Skip to content

Instantly share code, notes, and snippets.

@hellojinjie
Last active December 19, 2015 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hellojinjie/5964158 to your computer and use it in GitHub Desktop.
Save hellojinjie/5964158 to your computer and use it in GitHub Desktop.
坑爹的行尾结束符。
#!/usr/bin/env bash
java -jar dbmigrate.jar $*
# 在 windows 中编辑的 shell 脚本复制到 linux 运行出现 : No such file or directory 错误
# 你绝对想不到,上面的代码在 shell 看来应该是下面这样的
#!/usr/bin/env bash^M
java -jar dbmigrate.jar $*^M
# 运行 dos2unix ,去掉 \r 即可。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment