Files
VCS/getuser.sh
T
2024-06-26 12:03:29 -04:00

8 lines
158 B
Bash

#!/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