Combination of the find, exec, grep, and awk commands to write out a file.
Write a file in unix.
Date Created:Friday December 29th, 2006 03:41 AM
Date Modified:Wednesday July 30th, 2008 11:23 PM
for x in `ls |grep -v _Problems`;
do find ./$x -name "*VIDEO*" -exec ls -al {} \; |grep -v "\._" |grep -v RENDERALL |awk '{ print $5"\,"$9} ';
done > ~/Documents/thumb_res.csv
*find lists paths
*sed says to take all "/" and replace with a space...
*awk prints it out
find ./ -name *.ifd | sed -e "s/\// /g"| sed -e "s/__/ /g"| awk '{print "RENDER:" "----->""\n " $2 "\n" "\n" "PASS:"$4" "\n" "\n"}'
