#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
echo "$line"
done < "$input"
#!/bin/sh
value=`cat config.txt`
echo "$value"
#!/bin/bash
value=$(<config.txt)
echo "$value"
#if you want to display the contents of a file on the terminal, do:
$ cat filename.file