source6.sub

来自「android-w.song.android.widget」· SUB 代码 · 共 32 行

SUB
32
字号
# tests sourcing non-regular files, fixed post-3.2: ${TMPDIR:=/tmp}TMPFN=$TMPDIR/foo-$$rm -f $TMPFNecho "echo one - OK" > $TMPFN. $TMPFNecho $?rm -f $TMPFN# non-regular readable file. /dev/nullecho $?# FIFO or pipe via /dev/fd. <(echo "echo two - OK")echo $?# pipeecho "echo three - OK" | . /dev/stdinecho $?# FIFOmkfifo $TMPDIR/fifo-$$echo "echo four - OK" > $TMPDIR/fifo-$$ &sleep 1		# allow the child echo to execute. $TMPDIR/fifo-$$echo $?rm -f $TMPDIR/fifo-$$

⌨️ 快捷键说明

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