Инструкция по установке и использованию CURL в Windows. CURL - инструмент командной строки и библиотека для передачи данных с URL.
Использование CURL в Windows 10
Начиная Windows 10 v1803 CURL установлен по умолчанию.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | curl --help Usage: curl [options...] <url> -d, --data <data> HTTP POST data -f, --fail Fail silently (no output at all) on HTTP errors -h, --help <category> Get help for commands -i, --include Include protocol response headers in the output -o, --output <file> Write to file instead of stdout -O, --remote-name Write output to a file named as the remote file -s, --silent Silent mode -T, --upload-file <file> Transfer local FILE to destination -u, --user <user:password> Server user and password -A, --user-agent <name> Send User-Agent <name> to server -v, --verbose Make the operation more talkative -V, --version Show version number and quit This is not the full help, this menu is stripped into categories. Use "--help category" to get an overview of all categories. For all options use the manual or "--help all". |
Установка CURL в Windows
Если используется операционная система Windows отличная от Windows 10 v1803, то необходимо его установить.
Скачиваем последнюю версию, в зависимости от разрядности операционной системы.
После раскадровки архива, CURL можно использовать в своих скриптах
1 2 3 4 5 | curl-7.81.0-win64-mingw\bin>curl.exe --version curl 7.81.0 (x86_64-pc-win32) libcurl/7.81.0 OpenSSL/3.0.1 (Schannel) zlib/1.2.11 brotli/1.0.9 libidn2/2.3.2 libssh2/1.10.0 nghttp2/1.46.0 libgsasl/1.10.0 Release-Date: 2022-01-05 Protocols: dict file ftp ftps gopher gophers http https imap imaps ldap ldaps mqtt pop3 pop3s rtsp scp sftp smb smbs smtp smtps telnet tftp Features: alt-svc AsynchDNS brotli gsasl HSTS HTTP2 HTTPS-proxy IDN IPv6 Kerberos Largefile libz MultiSSL NTLM SPNEGO SSL SSPI TLS-SRP UnixSockets |
Для использования CURL из любого скрипта CMD, необходимо добавить путь до CURL в переменные окружения, либо скопировать его в уже имеющийся путь, к примеру в "C:\WINDOWS\system32"
1 2 | copy curl.exe C:\WINDOWS\system32 copy libcurl-x64.dll C:\WINDOWS\system32 |