问题执行一些工具的 raw.github.com 在线安装 shell 脚本时,会提示这个错误### ***.sh: 2: set: Illegal option -解决办法Remove trailing \r character that causes this error:先将脚本下载到本地,然后执行:sed -i 's/\r$//' [path/for/filename]再重新执行脚本即可。 shell