📄 click_through.sh
字号:
#!/bin/shLICENSE="LEGAL_AND_FAQ/PATENT"if [ -z $PAGER ] ; then PAGER=morefi$PAGER $LICENSEecho -n "Do you agree to the terms of this license [y/n]?"readif [ $REPLY != y ] ; then echo -n "You have no license to run RTLinux: Please delete it." exit -1firm -f .rtlinux_license_tmpecho -n '/proc/version: ' >> .rtlinux_license_tmpcat /proc/version >> .rtlinux_license_tmpecho -n 'uname: ' >> .rtlinux_license_tmpuname -a >> .rtlinux_license_tmpif [ ! -z "$1" ] ; then echo RTLinux: $1 >> .rtlinux_license_tmpfiecho -n '/etc/issue: ' >> .rtlinux_license_tmpcat /etc/issue >> .rtlinux_license_tmpcat <<EOF--------------------------------------------------------------To activate the license please email license@fsmlabs.com with:mail -s "License" license@fsmlabs.com < .rtlinux_license_tmp --------------------------------------------------------------EOF#rm -f .rtlinux_license_tmptouch ${RTL}/.rtlinuxacceptedexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -