Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulo-correia/linux_curl
Curl Help
https://github.com/paulo-correia/linux_curl
curl help linux
Last synced: 2 days ago
JSON representation
Curl Help
- Host: GitHub
- URL: https://github.com/paulo-correia/linux_curl
- Owner: paulo-correia
- Created: 2019-07-29T23:37:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-29T23:41:21.000Z (over 5 years ago)
- Last Synced: 2024-11-21T06:37:55.577Z (2 months ago)
- Topics: curl, help, linux
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Curl
É uma ferramenta para transferir dados de ou para um servidor, usando um dos Protocolos suportados (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP,IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET e TFTP).
O comando é projetado para funcionar sem Interação do usuário.Exemplos:
```
curl -I -s localhost:80
Testa a conectitividade de um Apache/Nignx/IIScurl localhost:3306
Testa se um MySQL/MariaDB está atendendo na porta 3306curl "localhost?Fisrt=Bruce&Last=Wayne"
Passa as variáveis First e Last com o seu conteúdo via GETcurl localhost -d"Fisrt=Bruce&Last=Wayne"
Passa as variáveis First e Last com o seu conteúdo via POST
```