MENU

et: Illegal option -解决方案

October 31, 2022 • linux相关

问题

执行一些工具的 raw.github.com 在线安装 shell 脚本时,会提示这个错误

### ***.sh: 2: set: Illegal option -

解决办法

Remove trailing \r character that causes this error:

先将脚本下载到本地,然后执行:

sed -i 's/\r$//' [path/for/filename]

再重新执行脚本即可。