0

I run this on my CentOs box:

zip -r backup.zip /home/user/domains/example.com/public_html/

The command works ok as it should, but I have an annoying problem.

What I expect is when I open the zip to have one folder in it: public_html

Instead i have /home/user/domains/example.com/public_html/. Does anyone know how to prevent this?

Sven
  • 98,649
  • 14
  • 180
  • 226
user146526
  • 85
  • 1
  • 5

1 Answers1

1

That looks like expected behavior, not strange behavior.

To get what you want, try this:

cd /home/user/domains/example.com
zip -r /srv/backups/example.com/backup.zip public_html
Michael Hampton
  • 244,070
  • 43
  • 506
  • 972