13 lines
402 B
Text
13 lines
402 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
clear
|
||
|
|
||
|
figlet -f future heed - bunkchat
|
||
|
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 /srv/bunkchat.txt
|