$‘\r‘: command not found的解决方法
在Linux系统中,运行Shell脚本,出现了如下错误:
one-more.sh: line 1: $'\r': command not found
出现这样的错误,是因为Shell脚本在Windows系统编写时,每行结尾是\r\n
,而在Linux系统中行每行结尾是\n
,所以在Linux系统中运行脚本时,会认为\r
是一个字符,导致运行错误。
解决方法
去除Shell脚本的\r
字符:
sed -i 's/\r//' one-more.sh
ref:(86条消息) $‘\r‘: command not found的解决方法_万猫学社的博客-CSDN博客
标签:脚本,Shell,常见问题,command,Linux,集合,found From: https://www.cnblogs.com/dejiang/p/16755071.html