linux判斷使用者是否存在的方法:1、將「read -p "please input a username:" username...」儲存為test.sh;2、執行「sh test.sh」即可。
本文操作環境:linux5.9.8系統,Dell G3電腦。
linux怎麼判斷使用者是否存在?
linux 判斷一個使用者是否存在:
#!/bin/bash read -p "please input a username:" username if id -u $username >/dev/null 2>&1; then echo "user exists" else echo "user does not exist" fi
把上面記憶體儲存為test.sh , 然後sh test.sh 運行
推薦學習:《linux影片教學》
以上是linux怎麼判斷使用者是否存在的詳細內容。更多資訊請關注PHP中文網其他相關文章!