解决linux中异常名字

2020-03-05  本文已影响0人  Silver_42ac

偶然间 建立特殊的名字
1、 前面带 “-”,“--”

rm --help 
To remove a file whose name starts with a '-', for example '-foo',
use one of these commands:
  rm -- -foo

  rm ./-foo

(1)占用 参数位

touch -- --help
第一个 -- 表示 参数的位置  后面--help 则会是被删除的文件
rm -- --help
删除文件 

(2)指定路径

touch ./--help
rm  ./--help

2、命名中带空格
如 “空格xxx” "xxx空格xxx"

touch "xxx  xxx"
touch "       xxx"
rm  "xxx  xxx"

ls ./* 可以显示出来
rm  ./"       xxx"  #删除时带上前后双引号
上一篇 下一篇

猜你喜欢

热点阅读