I use this current command that archives the folder "folder-root" and all it's content to a file named "site.zip":
zip -r site.zip folder-root/*
Problem is - I want to zip the contents of the folder and not the folder itself. Notice: I must issue the command from the current directory (ie - can't issue it from inside the folder).
How do I do that?