Différences entre versions de « Utilisateur:Arbg0002/brouillons/procédures »
Sauter à la navigation
Sauter à la recherche
(Page créée avec « Liste de procédures : ») |
|||
Ligne 1 : | Ligne 1 : | ||
− | + | = List of precedures = | |
+ | |||
+ | == Synchronization of files == | ||
+ | |||
+ | Synchronization of files from two directories, possibly on a remote machine. | ||
+ | |||
+ | * rsync takes as arguments "the list of files to be synchronized" and "the destination directory". | ||
+ | |||
+ | * the -r flag makes it recursive | ||
+ | |||
+ | Example : | ||
+ | |||
+ | rsync -r tempo/* /Data/L2 | ||
+ | |||
+ | |||
+ | All the files in directory /Data/L2 will be overwritten by any newer file in ./tempo/ |
Version du 12 avril 2019 à 10:45
List of precedures
Synchronization of files
Synchronization of files from two directories, possibly on a remote machine.
- rsync takes as arguments "the list of files to be synchronized" and "the destination directory".
- the -r flag makes it recursive
Example :
rsync -r tempo/* /Data/L2
All the files in directory /Data/L2 will be overwritten by any newer file in ./tempo/