美文网首页
解决linux中异常名字

解决linux中异常名字

作者: Silver_42ac | 来源:发表于2020-03-05 11:49 被阅读0次

偶然间 建立特殊的名字
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"  #删除时带上前后双引号

相关文章

网友评论

      本文标题:解决linux中异常名字

      本文链接:https://www.haomeiwen.com/subject/vzgtrhtx.html