Skip to content

Instantly share code, notes, and snippets.

@onjiro
Created April 6, 2012 11:32
Show Gist options
  • Save onjiro/2319040 to your computer and use it in GitHub Desktop.
Save onjiro/2319040 to your computer and use it in GitHub Desktop.
アレですよ、GNU実装じゃないと色々使えなくて不便ですよね
#!/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