Created
November 19, 2012 03:17
-
-
Save i03nomura1y/4108768 to your computer and use it in GitHub Desktop.
bash alias: SJIS に nkf して less する
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
# ファイル名以外の引数無効。 | |
# チェックしてない | |
s-less() { | |
if [ -n "$1" ];then | |
# 引数あり | |
nkf -s $@ | less | |
else | |
# 引数なし | |
less | |
fi | |
} | |
alias s-less="s-less" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment