shell學習筆記(1):利用IFS列印使用者和預設shell

來源:互聯網
上載者:User

標籤:style   blog   http   ar   io   color   os   sp   for   

參考資料為:linux shell指令碼攻略 作者sarath Lakshman 人民郵電出版社

shell:讀取檔案的每一行內容並輸出 的寫法1

目的:讀取passwd檔案,獲得使用者名稱和其預設的shell,並列印出來

首先cp /etc/passwd ./passwd_cp
shell指令碼get_usr_shell.sh內容如下:

#!/bin/bashfunction get_line_usr_shell(){#    echo $#    line="$1"    oldIFS=$IFS    IFS=":"    count=0    for item in $line    do        [ $count -eq 0 ] && user=$item        [ $count -eq 6 ] && shell=$item        let count++    done    IFS=$oldIFS    echo $user\‘s shell is $shell}if [ $# -gt 1 ]then    echo "parameter is more one in main"    exit 1fiwhile read linedo#    echo $line    get_line_usr_shell $linedone < $1
shell指令碼

然後在終端輸入./get_usr_shell passwd_cp即可得到結果:

shell學習筆記(1):利用IFS列印使用者和預設shell

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.