4

How can I zip a directory like -foo? $ zip "-foo" "-foo" shows only help page.

I think -foo is recognized as a options, but I don't know how to solve it.

ironsand
  • 5,205

3 Answers3

9

The general way for doing things like this is to prefix the file name with ./.

zip foo.zip ./-foo

This technique works most other utilities which accept a file name as an argument.

phemmer
  • 71,831
6

Try:

zip foo.zip -- -foo

Simply put -- before the filename(s).

v154c1
  • 1,186
6

Try using --

For example:

zip foo.zip -- -folder
mulaz
  • 2,517