Bash looping through directories & sub-directoires
Tags: bash, Linux, programming
Note to self…. If I want to “do” something to all files in all sub-directories then I need…..
#!/bin/bash
export IFS=$'\n'
for i in $(find $1 -type f)
do
echo "$i"
done
