如何将文件的第一个值传递给变量?

时间:2019-05-22 12:19:56

标签: linux shell

我有一个.txt文件,其中包含数据,例如

Ram
Raj
Viraj

我只想将第一个值 Ram 传递给变量,以便可以在Linux命令中进一步使用它的值。

我有一些有效的代码

head -1 demo.txt => gives me first value Ram

但是如何将该值传递给变量

喜欢

$value head-1 demo.txt
$value = Ram

不工作......

1 个答案:

答案 0 :(得分:0)

尝试一下:

value=$(head -1 demo.txt)