Created
April 6, 2012 11:32
-
-
Save onjiro/2319040 to your computer and use it in GitHub Desktop.
アレですよ、GNU実装じゃないと色々使えなくて不便ですよね
This file contains 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
#!/bin/sh | |
# 'tr -d \\r' ってやったら2バイト文字使っているファイルが壊れて参ったのですよ | |
# '^M' は Ctrl-V Ctrl-M で入力するのだとじっちゃんが言ってたよババンバン | |
sed 's/^M//' src > tmp; mv tmp src |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment