I have a big zip archive and I want to extract only .mp3
files that are located in sites/default/files/
to mymp3
directory. How can I achieve it?
Asked
Active
Viewed 174 times
1

Jeff Schaller
- 67,283
- 35
- 116
- 255

Yuseferi
- 400
1 Answers
3
I found the solution, you can do it with
unzip yourzipfile.zip 'sites/default/files/*.mp3' -d mymp3

Gilles 'SO- stop being evil'
- 829,060

Yuseferi
- 400
-
1You better put the filename wildcard into quotes, else you'll get problems if an mp3 already exists in the local path. – Murphy Feb 26 '16 at 12:25
sites/default/files/*.mp3
files form zip file – Yuseferi Feb 26 '16 at 07:14