12 lines
402 B
Bash
Executable file
12 lines
402 B
Bash
Executable file
#!/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
|