how to go through each files in linux code example Example: bash loop over files in directory #!/bin/bash for filename in /Data/*.txt; do ... done