Files
VCS/getuser.sh
T

8 lines
158 B
Bash
Raw Normal View History

2024-06-26 12:03:29 -04:00
#!/bin/bash
if [ -f "$HOME/ionsrc/creds.txt" ]; then
source "$HOME/ionsrc/creds.txt"
echo "logged in as $username!"
else
echo "no user found!"
fi