Date: Tue, 4 Aug 2009 20:06:56 -0500 From: Jay Hall <jhall@socket.net> To: freebsd-questions@freebsd.org Subject: find question Message-ID: <42D44C8E-1E22-426C-A9AA-0FBF2A52188A@socket.net>
next in thread | raw e-mail | index | archive | help
I am sure this is something I am doing that is obviously wrong, but I cannot figure it out. I am reading a list of directories from a file, and then listing all of the files in the directory to a file. Here is the code. #!/usr/local/bin/bash cat ${FILELIST} | while read LINE do echo ${LINE} `find ${LINE} -type f >> ${TMPFILE}` done Here is the output. /usr/home/windowsaccess find: illegal option -- t find: illegal option -- y find: illegal option -- p find: illegal option -- e find: f: No such file or directory Any suggestions would be greatly appreciated. Thanks, Jay
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?42D44C8E-1E22-426C-A9AA-0FBF2A52188A>