0
試圖閱讀bash中的fifo。爲什麼我會得到錯誤?爲什麼在閱讀shell中的fifo時出現錯誤?
pipe="./$1"
trap "rm -f $pipe" EXIT
if [[ ! -p $pipe ]]; then
mkfifo $pipe
fi
while true
do
if read line <$pipe; then
if "$line" == 'exit' || "$line" == 'EXIT' ; then
break
elif ["$line" == 'yes']; then
echo "YES"
else
echo $line
fi
fi
done
echo "Reader exiting"
的錯誤,我得到:
./sh.sh: line 12: [: missing `]' ./sh.sh: line 14: [HelloWorld: command not found
其他外殼和打印HelloWorld
你什麼錯誤? – chepner 2012-07-30 13:33:30