Tyleo-Dev-ShellScripting-Ol.../SH/checkuserexistence.sh
2024-02-18 22:29:57 +01:00

9 lines
172 B
Bash
Executable file

#!/bin/sh
echo -n "Enter a username to check: "
read name
if grep $name /etc/passwd > /dev/null
then
echo "$name is on this system"
else
echo "$name does not exist"
fi