做爲一個命令行探索者,你或許發現你本身一遍又一遍重複一樣的命令。若是你老是用ssh進入到同一臺電腦,若是你老是將一連串命令鏈接起來,若是你老是用一樣的參數運行一個程序,你也許但願在這種不斷的重複中爲你的生命節約下幾秒鐘。 html
解決方案是使用一個別名(alias)。正如你可能知道的,別名用一種讓你的shell記住一個特定的命令而且給它一個新的名字的方式。無論怎麼樣,別名有一些限制,它只是shell命令的快捷方式,不能傳遞或者控制其中的參數。因此做爲補充,bash 也容許你建立你本身的函數,這可能更長一些和複雜一點,它容許任意數量的參數。 linux
固然,當你有美食時,好比某種湯,你要分享它給你們。我這裏有一個列表,列出了一些最有用bash別名和函數的。注意「最有用的」只是個說法,別名的是否有用要看你是否天天都須要在 shell 裏面用它。 web
在你開始你的別名體驗之旅前,這裏有一個便於使用的小技巧:若是你的別名和本來的命令名字相同,你能夠用以下技巧來訪問本來的命令(LCTT 譯註:你也能夠直接本來命令的完整路徑來訪問它。) shell
1
|
\command
|
例如,若是有一個替換了ls命令的別名 ls。若是你想使用本來的ls命令而不是別名,經過調用它: bash
1
|
\ls
|
這些別名真的很簡單而且真的很短,但他們大多數是爲了給你的生命節省幾秒鐘,最終也許爲你這一生節省出來幾年,也許呢。 網絡
1
|
alias ls="ls --color=auto"
|
簡單但很是重要。使ls命令帶着彩色輸出。 dom
1
|
alias ll="ls --color -al"
|
以彩色的列表方式列出目錄裏面的所有文件。 ssh
1
|
alias grep='grep --color=auto'
|
相似,只是在grep裏輸出帶上顏色。 curl
1
|
mcd() { mkdir -p"$1"; cd"$1";}
|
個人最愛之一。建立一個目錄並進入該目錄裏: mcd [目錄名]。 函數
1
|
cls() { cd"$1"; ls;}
|
相似上一個函數,進入一個目錄並列出它的的內容:cls[目錄名]。
1
|
backup() { cp"$1"{,.bak};}
|
簡單的給文件建立一個備份: backup [文件] 將會在同一個目錄下建立 [文件].bak。
1
|
md5check() { md5sum"$1"| grep"$2";}
|
由於我討厭經過手工比較文件的md5校驗值,這個函數會計算它並進行比較:md5check[文件][校驗值]。
1
|
alias makescript="fc -rnl | head -1 >"
|
很容易用你上一個運行的命令建立一個腳本:makescript [腳本名字.sh]
1
|
alias genpasswd="strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 30 | tr -d '\n'; echo"
|
只是瞬間產生一個強壯的密碼。
1
|
alias c="clear"
|
清除你終端屏幕不能更簡單了吧?
1
|
alias histg="history | grep"
|
快速搜索你的命令輸入歷史:histg [關鍵字]
1
|
alias ..='cd ..'
|
回到上層目錄還須要輸入 cd 嗎?
1
|
alias ...='cd ../..'
|
天然,去到上兩層目錄。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
extract() {
if[ -f $1] ; then
case$1in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar e $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;;
*.tgz) tar xzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo"'$1' cannot be extracted via extract()";;
esac
else
echo"'$1' is not a valid file"
fi
}
|
很長,可是也是最有用的。解壓任何的文檔類型:extract: [壓縮文件]
想盡快地知道關於你的系統一切信息?
1
|
alias cmount="mount | column -t"
|
按列格式化輸出mount信息。
1
|
alias tree="ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'"
|
以樹形結構遞歸地顯示目錄結構。
1
|
sbs() { du -b --max-depth1| sort -nr | perl -pe's{([0-9]+)}{sprintf "%.1f%s", $1>=2**30? ($1/2**30, "G"): $1>=2**20? ($1/2**20, "M"): $1>=2**10? ($1/2**10, "K"): ($1, "")}e';}
|
安裝文件在磁盤存儲的大小排序,顯示當前目錄的文件列表。
1
|
alias intercept="sudo strace -ff -e trace=write -e write=1,2 -p"
|
接管某個進程的標準輸出和標準錯誤。注意你須要安裝了 strace。
1
|
alias meminfo='free -m -l -t'
|
查看你還有剩下多少內存。
1
|
alias ps? ="ps aux | grep"
|
能夠很容易地找到某個進程的PID:ps? [名字]。
1
|
alias volume="amixer get Master | sed '1,4 d' | cut -d [ -f 2 | cut -d ] -f 1"
|
顯示當前音量設置。
對於全部用在互聯網和本地網絡的命令,也有一些神奇的別名給它們。
1
|
alias websiteget="wget --random-wait -r -p -e robots=off -U mozilla"
|
下載整個網站:websiteget [URL]。
1
|
alias listen="lsof -P -i -n"
|
顯示出哪一個應用程序鏈接到網絡。
1
|
alias port='netstat -tulanp'
|
顯示出活動的端口。
1
|
gmail() { curl -u"$1"--silent"https://mail.google.com/mail/feed/atom"| sed -e's/<\/fullcount.*/\n/'| sed -e's/.*fullcount>//'}
|
大概的顯示你的谷歌郵件裏未讀郵件的數量:gmail [用戶名]
1
|
alias ipinfo="curl ifconfig.me && curl ifconfig.me/host"
|
得到你的公網IP地址和主機名。
1
|
getlocation() { lynx -dump http://www.ip-adress.com/ip_tracer/?QRY=$1|grep address|egrep 'city|state|country'|awk '{print $3,$4,$5,$6,$7,$8}'|sed 's\ip address flag \\'|sed 's\My\\';}
|
返回你的當前IP地址的地理位置。
因此呢,若是一些別名並非全都具備使用價值?它們可能仍然有趣。
1
|
kernelgraph() { lsmod | perl -e'print "digraph \"lsmod\" {";<>;while(<>){@_=split/\s+/; print "\"$_[0]\" -> \"$_\"\n" for split/,/,$_[3]}print "}"'| dot -Tpng | display -;}
|
繪製內核模塊依賴曲線圖。須要能夠查看圖片。
1
|
alias busy="cat /dev/urandom | hexdump -C | grep 'ca fe'"
|
在那些非技術人員的眼裏你看起來是老是那麼忙和神祕。
最後,這些別名和函數的很大一部分來自於我我的的.bashrc。而那些使人點讚的網站 alias.sh和commandlinefu.com我早已在個人帖子best online tools for Linux 裏面介紹過。你能夠去看看,若是你願意,也能夠分享下你的。也歡迎你在這裏評論,分享一下你的智慧。
作爲獎勵,這裏有我提到的所有別名和函數的純文本版本,隨時能夠複製粘貼到你的.bashrc。(若是你已經一行一行的複製到這裏了,哈哈,你發現你又浪費了生命的幾秒鐘~)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#Productivity
alias ls="ls --color=auto"
alias ll="ls --color -al"
alias grep='grep --color=auto'
mcd() { mkdir -p"$1"; cd"$1";}
cls() { cd"$1"; ls;}
backup() { cp"$1"{,.bak};}
md5check() { md5sum"$1"| grep"$2";}
alias makescript="fc -rnl | head -1 >"
alias genpasswd="strings /dev/urandom | grep -o '[[:alnum:]]' | head -n 30 | tr -d '\n'; echo"
alias c="clear"
alias histg="history | grep"
alias ..='cd ..'
alias ...='cd ../..'
extract() {
if[ -f $1] ; then
case$1in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) unrar e $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;
*.tbz2) tar xjf $1 ;;
*.tgz) tar xzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7z x $1 ;;
*) echo"'$1' cannot be extracted via extract()";;
esac
else
echo"'$1' is not a valid file"
fi
}
#System info
alias cmount="mount | column -t"
alias tree="ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'"
sbs(){ du -b --max-depth1| sort -nr | perl -pe's{([0-9]+)}{sprintf "%.1f%s", $1>=2**30? ($1/2**30, "G"): $1>=2**20? ($1/2**20, "M"): $1>=2**10? ($1/2**10, "K"): ($1, "")}e';}
alias intercept="sudo strace -ff -e trace=write -e write=1,2 -p"
alias meminfo='free -m -l -t'
alias ps?="ps aux | grep"
alias volume="amixer get Master | sed '1,4 d' | cut -d [ -f 2 | cut -d ] -f 1"
#Network
alias websiteget="wget --random-wait -r -p -e robots=off -U mozilla"
alias listen="lsof -P -i -n"
alias port='netstat -tulanp'
gmail() { curl -u"$1"--silent"https://mail.google.com/mail/feed/atom"| sed -e's/<\/fullcount.*/\n/'| sed -e's/.*fullcount>//'}
alias ipinfo="curl ifconfig.me && curl ifconfig.me/host"
getlocation() { lynx -dump http://www.ip-adress.com/ip_tracer/?QRY=$1|grep address|egrep 'city|state|country'|awk '{print $3,$4,$5,$6,$7,$8}'|sed 's\ip address flag \\'|sed 's\My\\';}
#Funny
kernelgraph() { lsmod | perl -e'print "digraph \"lsmod\" {";<>;while(<>){@_=split/\s+/; print "\"$_[0]\" -> \"$_\"\n" for split/,/,$_[3]}print "}"'| dot -Tpng | display -;}
alias busy="cat /dev/urandom | hexdump -C | grep \"ca fe\""
|