↧
Answer by Nasir Riley for Zip but do not scan excluded folder
You will need to include the full path to the directory that you want to exclude. If it is inside of /home/test: zip -r myzip.zip /home/test -x /home/test/share/\* If it's elsewhere: zip -r myzip.zip...
View ArticleAnswer by msp9011 for Zip but do not scan excluded folder
From man page: -y --symlinks For UNIX and VMS (V8.3 and later), store symbolic links as such in the zip archive, instead of compressing and storing the file referred to by the link. This can avoid...
View ArticleZip but do not scan excluded folder
I am making a zip of a directory. I used this command to exclude a certain folder zip -r myzip.zip /home/test -x share/\* When I used this command it still scans through that folder. It has numerous...
View Article