标签:一个 linux系统 not man 脚本 linux shell 换行 换行符
用Windows上写了一个脚本,结果放到虚拟机上运行的时候出现了一个错误:** $‘\r‘: command not found **。
错误的原因是linux系统的换行符是\n
,而Windows里的换行符是\r\n
。
安装一个命令:dos2unix
yum install dos2unix -y
dos2unix 文件名
linux运行脚本出现 $'\r': command not found 错误的解决方法
标签:一个 linux系统 not man 脚本 linux shell 换行 换行符
原文地址:https://www.cnblogs.com/CharrammaBlog/p/13059672.html