bash-utils/chat/seelog.sh

12 lines
170 B
Bash
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