web-dev-qa-db-fra.com

Comment copier un répertoire entier sauf un fichier dans chaque sous-répertoire via un terminal?

J'ai un dossier nommé "Java" qui a 20 sous-dossiers ("Day-01" à "Day-20"). Chaque sous-dossier contient un ou deux fichiers ".wav" ainsi que quelques autres fichiers. Je veux copier le répertoire entier à l'exception des fichiers '.wav' via un terminal. Comment puis-je faire cela?

6
optimist

Le moyen le plus simple consiste à utiliser rsync avec l’option --exclude pour exclure de la copie les fichiers .wav:

rsync -av --exclude='*.wav' /path/to/Java /out/dir

Exemple:

/foobar/Java% tree
.
├── day-01
│   ├── 01.sh
│   ├── 01.txt
│   └── 01.wav
├── day-02
│   ├── 02.sh
│   ├── 02.txt
│   └── 02.wav
├── day-03
│   ├── 03.txt
│   └── 03.wav
├── day-04
│   └── 04.txt
└── day-05
    └── 05.wav

/foobar/out% rsync -av --exclude='*.wav' ../Java .
sending incremental file list
Java/
Java/day-01/
Java/day-01/01.sh
Java/day-01/01.txt
Java/day-02/
Java/day-02/02.sh
Java/day-02/02.txt
Java/day-03/
Java/day-03/03.txt
Java/day-04/
Java/day-04/04.txt
Java/day-05/

sent 564 bytes  received 158 bytes  1,444.00 bytes/sec
total size is 0  speedup is 0.00

/foobar/out% tree
.
└── Java
    ├── day-01
    │   ├── 01.sh
    │   └── 01.txt
    ├── day-02
    │   ├── 02.sh
    │   └── 02.txt
    ├── day-03
    │   └── 03.txt
    ├── day-04
    │   └── 04.txt
    └── day-05
12
heemayl

Le moyen le plus simple consiste à utiliser rsync de manière appropriée:

rsync -avz --exclude "*.wav" SOURCE_DIR DESTINATION_DIR
0
Julen Larrucea