Blog |Follow Nick on Twitter| About
 

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

 

 
Nick Bettison ©