📄 exec7.sub
字号:
# make sure that bash really checks the right things when deciding what# constitutes an executable file[ $UID -eq 0 ] && { echo "exec7.sub: the test suite should not be run as root" >&2 ; }: ${TMPDIR:=/tmp}cd $TMPDIR || { echo "cannot cd to $TMPDIR" >&2 ; exit 2; }mkdir testa testbecho 'echo "testa"' > testa/fooecho 'echo "testb"' > testb/foochmod 655 testa/foochmod 755 testb/fooPATH=$TMPDIR/testa:$TMPDIR/testb $THIS_SH -c foorm -rf testa testb
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -