mirror of
https://github.com/techarkit/shell-scripting-tutorial.git
synced 2025-08-09 04:06:44 +00:00
Create userexists.sh
This commit is contained in:
18
userexists.sh
Normal file
18
userexists.sh
Normal file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
##Purpose: Check given user Exits Or Not
|
||||
##Date: 27th Oct 2016
|
||||
##Author: Ankam Ravi Kumar
|
||||
##WebSite: https://arkit.co.in
|
||||
|
||||
##Start
|
||||
echo "Please Enter User name you want check:\c"
|
||||
read user
|
||||
grep $user /etc/passwd > /dev/null
|
||||
if [ $? -eq 0 ]; then
|
||||
grep $user /etc/passwd
|
||||
echo "$user Exists in this Machine"
|
||||
else
|
||||
echo "$user does not exists"
|
||||
fi
|
||||
|
||||
##END
|
Reference in New Issue
Block a user