https://httpie.org/ – а еще есть такая “модная” альтернатива curl/wget
CURL
отправка GET и POST переменных
GET: curl “https://weril.me/?s=curl”
~$ curl "https://weril.me/?s=curl" 2>/dev/null | grep "page-title" <h1 class="page-title">Search Results for: curl</h1>
POST: curl -d “s=curl” “https://weril.me/”
~$ curl -d "s=curl" "https://weril.me/"
Читать дальше