informatique:ftp
Table des matières
FTP
Utilisation
- Lancer le programme
ftp
- Ouvrir une connexion
open <url>
- Fermer une connexion
close <url>
- Envoyer un fichier
put <file>
- Récupérer un fichier
get <file>
- Supprimer un fichier
delete <file>
- Quitter le programme
quit
Avec cURL
- Envoyer un fichier1)
curl -T <file> ftp://<url>/<path>/ --user <username>:<password>
- Envoyer plusieurs fichiers
curl -T {<file>,<file>} ftp://<url>/<path>/ --user <username>:<password>
- Reprise de l'envoi d'un fichier
curl -C - -T <file> ftp://<url>/<path>/ --user <username>:<password>
- Récupérer un fichier
curl ftp://<url>/<path>/<file> --user <username>:<password> -o <file>
- Supprimer un fichier
curl ftp://<url>/ -X 'DELE <path>/<file>' --user <username>:<password>
1)
Pour la Freebox, il faut utiliser mafreebox.freebox.fr comme url
informatique/ftp.txt · Dernière modification : 2017/04/22 07:02 de alexis