码迷,mamicode.com
首页 > 其他好文 > 详细

mv,rm等命令出现unrecognized option提示的解决方法

时间:2019-01-22 21:45:36      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:inf   more   shel   code   提示   操作   name   解释   form   

出现这个提示,一般是由于命令操作的文件名最前面有"--"字符, 让命令误以为是--开头的长选项

 

解决: 命令后加上"--", shell把 -- 之后的参数当做文件名来对待 禁止把-filename当做参数选项来解释

eg:

$ touch --a.txt
touch: unrecognized option ‘--a.txt‘
Try ‘touch --help‘ for more information.
$ touch -- --a.txt

 

$ mv --a.txt --b.txt
mv: unrecognized option ‘--a.txt‘
Try ‘mv --help‘ for more information.
$ mv -- --a.txt --b.txt

 

mv,rm等命令出现unrecognized option提示的解决方法

标签:inf   more   shel   code   提示   操作   name   解释   form   

原文地址:https://www.cnblogs.com/codeking100/p/10306028.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!