首页 > 其他分享 >常见问题集合

常见问题集合

时间:2022-10-05 09:34:13浏览次数:81  
标签:脚本 Shell 常见问题 command Linux 集合 found

$‘\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

相关文章