Problem Zipping a file

Asked by Sidarth Dasari

Hi, I ran the following command and go the following error. What am I doing wrong?

sid@lappy:~$ zip -r9 ~/Music/Music/Coldplay/

zip error: Nothing to do! (/home/sid/Music/Music/Coldplay/.zip)

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Marco Groppo
Solved:
Last query:
Last reply:
Revision history for this message
Best Marco Groppo (marco-groppo) said :
#1

The archive name is missing:

 $ zip -r9 coldplay.zip ~/Music/Music/Coldplay

Revision history for this message
Sidarth Dasari (sirsid) said :
#2

Thanks Marco Groppo, that solved my question.