bash-utils/chat/chat

12 lines
170 B
Plaintext
Raw Normal View History

2021-09-26 15:43:34 +02:00
#!/bin/bash
path="/var/log/users"
if [ "$1" = "root" ] || [ "$1" = "" ]; then
file=$(cat $HOME/.log/last.txt)
else
file=$(cat /home/$1/.log/last.txt)
fi
tail -f $file