I want to iterate over a list of files. This list is the result of a find command, so I came up with:
find
getlist() { for f in $(find . -iname \"f
find . -iname "foo*" -print0 | xargs -L1 -0 echo "File found:"