Shell應用編程之開機密碼歡迎welcome

來源:互聯網
上載者:User

Shell應用編程之開機密碼歡迎welcome

描述:若使用者希望鎖定對終端的訪問,但不想退出並再次登入,則可以編寫一個指令碼程式實現。

當調用該指令碼時,知道使用者輸入正確的密碼才能退出。

其中:ctrl + u  刪除整行

            ctrl + b 刪除前一個字元

           粗體顯示字元

shell程源序:

trap " " 2 3 4stty -echo#tput belstty kill \^ustty erase \^btput bold#tput blinktput bel#tput dimif [ $# -gt 0 ]then   MESG="$@"else  MESG="This system is locked"fitput cleartput cup 5 10; echo "Enter your passwd>\c"read pword_1tput cleartput cup 10 20;echo "$MESG"pword_2=until [ "$pword_1" = "$pword_2" ]do  tput rev  read pword_2donestty echotput clearexit 0

分析:通過trap捕捉訊號,設定中斷訊號、退出訊號均已屏蔽,即ctrl + c,del ,Break鍵均不管用。

相關文章

聯繫我們

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