Problem Let’s say we have a file named in.txt with the following content: $ cat in.txt # comment * and we want to read it line by line and do something with each one of them. The following could be a solution: #!/bin/bash for line in $(cat in.txt); do echo “line:$line” done Let’s see if …