Answer the question
In order to leave comments, you need to log in
How to archive everything but pictures?
I'm not strong in * nix commands, tell me.
I know how to archive an arbitrary folder. And how would I archive everything (including files in subdirectories) except for files with a specific extension?
Pictures and videos should be excluded.
Answer the question
In order to leave comments, you need to log in
tar -pczvf archive.tar.gz --exclude="*.avi" --exclude="*jpg" /path/to/dir
or so
find . -type f \( -iname "*.*" ! -iname "*.php" \) | zip arch.zip [email protected]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question