有些文件的名称以“-”开头,例如“-1.png”、“-2.png”。我不能用通配符操作它们,因为这些名称被视为选项:
bash-3.2$ ls *.png
ls: illegal option -- .
usage: ls [-ABCFGHLOPRSTUWabcdefghiklmnopqrstuwx1] [file ...]
bash-3.2$ rm *.png
rm: illegal option -- 1
usage: rm [-f | -i] [-dPRrvW] file ...
unlink file
如何解决这个问题呢?