install.sh

来自「Linux下的MUD客户端程序」· Shell 代码 · 共 35 行

SH
35
字号
#!/bin/sh# # Install the tintin++ executable and help file.# echo " "echo "Copying the tintin++ executable to \"$1\"..."strip tt++cp tt++ "$1"echo "Copying the tintin++ help file to \"$2\"..."if [ "$3" ]; then   cp support/.tt_help.txt.Z "$2/"else  echo Uncompressing.  uncompress -c support/.tt_help.txt.Z | cat > "$2"/.tt_help.txtfiecho echo "You'll have to do 1 thing before you continue with using tintin++."echo "Look over support/.tintinrc and notice the #pathdir's..  Either add" echo "Them to your current .tintinrc in your home directory, or copy that"echo "file to your home directory with something like:"echo "cp support/.tintinrc ~"echo " "echo "If you have any questions, problems, or comments, you may email"echo "us at the address listed in the README, or type './gripe'."echo "and enter what your gripe is (This will get mailed to the Devel Team)"echo " "echo "Enjoy!!!"echo "--The tintin++ developement team"exit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?