文章出處
文章列表
在命令行上直接定義shell函數的明顯缺點是當退出shell時,函數就消失了,對于復雜的函數來說,這可能會是個問題。
一個簡單的方法就是每次啟動新shell的時候都會自動加載所需要的函數。
最好的辦法就是.bashrc文件。bash shell會在每次啟動時在主目錄查找這個文件,不管是交互式的還是從現有shell中啟動一個新的shell
1、直接定義函數
可以直接在主目錄的.bashrc文件中定義函數。.bashrc的路徑一搬為 home/linux用戶名/ 許多Linux發行版已經在.bashrc文件中定義了一些東西了,所以注意別刪掉這些內容,只要在已有文件的末尾上加上你寫的函數就行了。類似如下:
# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi function addem { echo $[ $1 + $2 ] } # User specific aliases and functions
其中
function addem { echo $[ $1 + $2 ] }
是用戶自行添加的。
直到下次啟動新的bash shell 時該函數才會生效。添加并啟動bash shell后,你就能在系統上任意地方使用該函數了。
2、讀取函數文件
只要是在shell腳本中,你都可以用source命令(或者它的別名點操作符)來將已有庫文件中的函數添加到你的.bashrc腳本中:
# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi /home/rich/lobraries/myfuncs # User specific aliases and functions
確保包含了引用庫文件的正確路徑,以便于bash shell來查找該文件。下次啟動shell時,庫中的所有函數都可以在命令行界面下使用了:
$ addem 10 5 15 $ multem 10 5 50 $divem 10 5 2
更好一點的是,shell還會將定義好的函數傳給與shell進程,這樣這些函數在該shell會話中的任何shell腳本中也都可以用。你可以寫個腳本來測試,直接使用這些函數而不用單獨定義或讀取它們:
#!/bin/bash # using functions defined in a library file value1=10; value2=5 result1=`addem $value1 $value2` result2=`multem $value1 $value2` result3=`divem $value1 $value2` echo "The result of adding them is: $result1" echo "The result of multiplying th is: $result2" echo "The result of dividing them is: $result3"
運行后輸出為:
The result of adding them is: 15 The result of multiplying them is:50 the result of dividing them is:2
甚至不用讀取庫文件,這些函數也能在shell腳本中還好的工作。
文章列表
全站熱搜