In the last few days I've started to learn python and gone a bit python mad with it, as a result I have a bunch of test scripts where I have been learning to do stuff. This is one of my first ones, basically I've taken this guy ...
Bash looping through directories & sub-directoires
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
Page 1 / 1
