TIL: You can make HTTP requests without curl using Bash /dev/TCP
Bash has a built-in /dev/tcp pseudo-device that can be used to make HTTP requests without relying on external tools like curl. By redirecting I/O to /dev/tcp/host/port, users can send raw HTTP requests and receive responses directly within the shell.