gpt4 book ai didi

shell - 如何仅将文件中的第三行读入 shell 脚本中的变量

转载 作者:行者123 更新时间:2023-12-04 13:28:31 28 4
gpt4 key购买 nike

我正在执行一个 shell 脚本,在其中运行一个 sybase 查询,该查询在文件中提供 O/P。

输出是:-

            tablename

---------------------------
result of query executed my case will be an integer returned


(Number of rows effected ).

我想做的是阅读 result of query executed which in my case will be an integer returned进入 shell 脚本中的一个变量。它将在我重定向了我的 Sybase 查询的输出的文件的第 3 行。

我怎样才能做到这一点 ?

最佳答案

你是这个意思吗?

x=`sed -n '3p' inputfile`;
echo $x;

编辑

做这个。
thirdline=`sed -n '3p' /home/nmsad/abc.txt`;
echo $thirdline;

关于shell - 如何仅将文件中的第三行读入 shell 脚本中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9972807/

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