I want to save a specified line of a file to a variable in bash script example:
FileToReadFromThat.txt
a
b
c
d
e
What I want to save in a simple line:
variable="line 3 from $HOME/FileToReadFromThat.txt"
And result to get from that:
$ echo $varible
c