使用 $(...) 获取子命令的错误代码
getting the error code of a sub-command using $(...)
在此代码中:
echo hello > hello.txt
read X <<< $(grep hello hello.txt)
echo $?
$?
指的是 0 的读取语句的退出代码。有没有办法知道 grep
是否失败(例如,如果 hello.txt
已被删除另一个过程)而不将 read
和 grep
拆分为两个语句(即,首先 grep
然后检查 $?
然后 read
)。
使用process substitution
代替command substitution + here string
:
read X < <(grep 'hello' hello.txt)
这将使您在使用 echo $?
时得到 1
。
PS:如果 grep
失败,它将在您的终端上写入错误。
如果你想抑制错误然后使用:
read X < <(grep 'hello' hello.txt 2>/dev/null)
刚刚:
X=$(grep hello hello.txt)
echo $?
一般情况下要使用read来做分词,那么使用一个临时变量:
tmp=$(grep hello hello.txt)
echo $?
IFS=' ' read -r name something somethingelse <<<"$tmp"
在此代码中:
echo hello > hello.txt
read X <<< $(grep hello hello.txt)
echo $?
$?
指的是 0 的读取语句的退出代码。有没有办法知道 grep
是否失败(例如,如果 hello.txt
已被删除另一个过程)而不将 read
和 grep
拆分为两个语句(即,首先 grep
然后检查 $?
然后 read
)。
使用process substitution
代替command substitution + here string
:
read X < <(grep 'hello' hello.txt)
这将使您在使用 echo $?
时得到 1
。
PS:如果 grep
失败,它将在您的终端上写入错误。
如果你想抑制错误然后使用:
read X < <(grep 'hello' hello.txt 2>/dev/null)
刚刚:
X=$(grep hello hello.txt)
echo $?
一般情况下要使用read来做分词,那么使用一个临时变量:
tmp=$(grep hello hello.txt)
echo $?
IFS=' ' read -r name something somethingelse <<<"$tmp"