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 運行bash

相關文章
相關標籤/搜索