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

13 lines
241 B
Bash
Executable file

#!/usr/bin/env bash
name=$USER
while [[ $name = * ]]; do
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
done