408 commandes partagées

Ta mémoire technique
collaborative

Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.

CodeBox
408 Commandes
13 Développeurs
99 Technologies

3 résultat(s) pour "copy"

Copie un fichier local vers tous les hôtes distants.

bash
ansible all -m copy -a "src=./fichier.conf dest=/etc/fichier.conf mode=0644"

Upload un fichier local vers un bucket S3.

bash
aws s3 cp fichier.txt s3://mon-bucket/chemin/

Télécharge un fichier S3 en local.

bash
aws s3 cp s3://mon-bucket/fichier.txt ./