Tyleo-Dev-ShellScripting-Ol.../SH/checkuserexistenceloop.sh

14 lines
241 B
Bash
Raw Permalink Normal View History

2024-02-18 21:29:57 +00:00
#!/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