Unix Linux 第三方實用Shell工具集

來源:互聯網
上載者:User

 

第三方就是我方啦.

 

1. path

環境變數$PATH不會換行,看起來很費勁,path將$PATH分行輸出

echo -e ${PATH//:/'/n'}

2. classpath

類似path

echo -e ${CLASSPATH//:/'/n'}

3. rmall

遞迴的將某個目錄下所有滿足條件的檔案和子目錄刪除

for file in $( find "${1:-not.exist}" -name "${2:-not.exist}" ); do

    rm -rf $file

done

4. pkill

按名稱kill進程,linux提供了pkill,當aix之類的沒有提供;下面的指令碼依賴於ps的輸出格式,各個平台不同,需要微調

aix: for pid in $( ps xu | grep "${1:-arg.not.exist}" | cut -f3 -d' ' | tr ' ' "/n" ); do

    kill -9 $pid

done

red-hat: for proc in $( ps | grep "${1:-notexit}" | cut -f1 -d' ' ); do

    kill -9 $proc

done

5. linkto

大量建立符號連結;有時需要拷貝某個目錄的眾多子目錄中的一兩個,而為其它所有的子目錄建立符號連結

src=${1:-not.exist}

for file in $( ls $src ); do

    ln -s $src/$file $file

done

6. findinfiles

搜尋包含特定字串的檔案;可能find本身或grep本身就能做吧,參數太多了,不會用

for file in $(find $1 -name "$2"); do
    if grep -n "$3" $file;then
      echo 'found in ' $file
    fi
done

 

下載 Sky Shell Utility: http://cosoft.org.cn/project/showfiles.php?group_id=5717

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.