loop through every file in the current working directory. code example
Example: bash loop over files in directory
#!/bin/bash
for filename in /Data/*.txt; do
...
done
#!/bin/bash
for filename in /Data/*.txt; do
...
done