📄 sf-1
字号:
#!/bin/shtest=sf-1if test "$VERBOSE" = yes; then set -x ln --versionfi# Make sure we get English translations.. $srcdir/../lang-defaulttmp=t-ln.$$test_failure=0mkdir $tmp || test_failure=1cd $tmp || test_failure=1echo foo > a || test_failure=1ln -s . b || test_failure=1if test $test_failure = 1; then echo 'failure in testing framework' exit 1fifail=0ln -sf a b > err 2>&1 && fail=1case `cat err` in *'are the same file') ;; *) fail=1 ;;esaccd ..rm -rf $tmpexit $fail
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -