How do I modify this line below to capture the content between two lines without the trailing line break?
interesting="$(awk "NR >= $first_line && NR <= $second_line" $file_path | base64 -w 0)"
I'm not sure if I should be looking to do this with awk, bash, or some other unix tool?