# problem with file names qith -- in the name, for example 'some secret file -- to wipe out.doc' bash# shred -u *.doc shred: invalid option -- ' ' Try 'shred --help' for more information. # solution: "--" before the wildcard for the files: bash# shred -u -- *.doc