Remove Files with Special Characters
If you ever create a file with special characters by accident e.g.
--strip-options
You can delete by using
rm -- --strip-options
The initial -- means that no more arguments will appear on the command line thus --strip-options is treated at the file name
--strip-options
You can delete by using
rm -- --strip-options
The initial -- means that no more arguments will appear on the command line thus --strip-options is treated at the file name
Comments
Post a Comment