系统相关
首页 > 系统相关> > shell脚本编辑报‘\r‘:Cannot stat:No such file or directory

shell脚本编辑报‘\r‘:Cannot stat:No such file or directory

作者:互联网

笔记

该问题由windos与linux的编码差异导致

  1. 方法一:
    sed -i ‘s/\r$//’ 文件名
    sed -i ‘s/\r//’ 文件名

  2. 方法二:
    dos2unix 文件名
    需要yum安装dos2unix

标签:stat,shell,文件名,No,sed,file,linux,dos2unix
来源: https://blog.csdn.net/yuhuochengshi/article/details/121098926