Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将一组命令的输出存储到 shell 脚本中的变量中。明显的反引号和 eval 失败了。有人可以帮我解决这个问题。
我想存储的输出
head -"$errno" tmptmptmp2 | tail -1 | sed 's/,//'
成一个变量。
顺便说一句,该命令工作正常。
你可以做:
var=$(head -"$errno" tmptmptmp2 | tail -1 | sed 's/,//')