I have a directory calledfolder
that looks like this:
I want to zip this directory intofolder -> root_folder -> some files
zipped_dir
..
And the answer I found was sample and effective:
Try to use this command (you will get the idea)
Maybe there is other way, but this is fastest and simplest for me :)cd folder; zip -r ../zipped_dir.zip *
The lesson is that people must learn how to use relative directories :)
P.S. Here is the link to the Q/A in SE .
No comments:
Post a Comment