📄 license.sh
字号:
#!/bin/sh rm -f .licensecat license.txtprintf "Do you wish to continue ? "answer=nonewhile [ $answer = none ]; do read a if [ "$a" = "yes" -o "$a" = "Yes" ]; then answer=yes fi if [ "$a" = "no" -o "$a" = "No" ]; then answer=no fi if [ $answer = none ]; then printf "\nPlease type yes or no : " fidoneif [ $answer = no ]; then echo " " echo "Installation stopped." echo " "else echo " " echo "Installation continues ..." echo " " touch .licensefi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -