mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
370 B
26 lines
370 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
IFS='
|
||
|
'
|
||
|
|
||
|
if [ $# != 2 ]
|
||
|
then
|
||
|
>&2 echo "Error: expect 2 arguments"
|
||
|
exit 1
|
||
|
elif [[ $1 == "-e" ]]
|
||
|
then
|
||
|
user_info=$(getent passwd $2)
|
||
|
if [[ $user_info == "" ]]
|
||
|
then
|
||
|
echo no
|
||
|
else
|
||
|
echo yes
|
||
|
fi
|
||
|
elif [[ $1 == "-i" ]]
|
||
|
then
|
||
|
getent passwd $2
|
||
|
else
|
||
|
>&2 echo "Error: unknown flag"
|
||
|
exit 1
|
||
|
fi
|