17 lines
729 B
Bash
Executable file
17 lines
729 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
chatlog=var/log/bunkchat/chat.log
|
|
|
|
clear
|
|
|
|
echo "╻ ╻┏━╸┏━╸╺┳┓ ┏┓ ╻ ╻┏┓╻╻┏ ┏━╸╻ ╻┏━┓╺┳╸"
|
|
echo "┣━┫┣╸ ┣╸ ┃┃ ╺━╸ ┣┻┓┃ ┃┃┗┫┣┻┓┃ ┣━┫┣━┫ ┃ "
|
|
echo "╹ ╹┗━╸┗━╸╺┻┛ ┗━┛┗━┛╹ ╹╹ ╹┗━╸╹ ╹╹ ╹ ╹ "
|
|
|
|
echo "#######################################################################"
|
|
echo " Take heed, $USER! This is a group chat with everyone on the server!"
|
|
echo " You can view earlier chat with 'scry' or 'less /srv/bunkchat.txt'"
|
|
echo "#######################################################################"
|
|
echo
|
|
|
|
tail -f $chatlog
|