Zip Quote for directory names with spaces
zip -r /Volumes/Mac3Hd2/Backup '/Users/myname/Documents/Test Zip/*'
Terminal does not like the: '/Users/myname/Documents/Test Zip/*'
Where have I gone south?
Thanks
<code>mikey$ zip -f archivename.zip "/Users/myname/Documents/Test Zip/"</code>
<code>[thermodynamics:~/Desktop] mikey% ls *.zip
file.zip
[thermodynamics:~/Desktop] mikey% ls "*.zip"
ls: *.zip: No such file or directory</code>
<code>[thermodynamics:~/Desktop] mikey% ls *".zip"
file.zip</code>
Zip Quote for directory names with spaces