mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-01 23:18:49 +01:00
21 lines
627 B
Bash
Executable file
21 lines
627 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cat << EOF
|
|
|
|
TbaMUD is freeware (it doesn't cost anything), but it is copyrighted
|
|
and has a license. You must read and agree to abide by the license before
|
|
using tbaMUD.
|
|
|
|
This message will only appear once (the first time you compile the server),
|
|
but is contained in the file doc/license.txt if you'd like to refer back to
|
|
it in the future.
|
|
|
|
Press return to read the license. Press Q to ACCEPT the terms and quit.
|
|
EOF
|
|
read temp
|
|
cat ../doc/license.txt | $1
|
|
echo
|
|
echo Press return or Q to ACCEPT the terms of this license.
|
|
echo Press Control-C if you DO NOT ACCEPT the terms of this license.
|
|
read temp
|
|
touch .accepted
|