gpt4 book ai didi

bash - 在 awk 中设置 bash 变量

转载 作者:行者123 更新时间:2023-11-29 09:20:52 27 4
gpt4 key购买 nike

我有

grep 5980 list.txt > temp; awk '{ print $4}' temp

但我不想只打印结果,而是想将其设置为环境变量。

我对 bash 和 awk 有点陌生,所以也非常感谢解释。

最佳答案

使用command substitution

export variable=$(grep 5980 list.txt > temp; awk '{ print $4}' temp)

关于bash - 在 awk 中设置 bash 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7314040/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com