Last active
December 19, 2015 13:48
-
-
Save hellojinjie/5964158 to your computer and use it in GitHub Desktop.
坑爹的行尾结束符。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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