Jun 1, 2006 #1 AIXtexas Technical User Feb 5, 2002 80 US Hello, I need a find command to search for files whose name is over 48 characters, this should include spaces. Please let me know if you can help. Thanks, Shane
Hello, I need a find command to search for files whose name is over 48 characters, this should include spaces. Please let me know if you can help. Thanks, Shane
Jun 1, 2006 1 #2 motoslide MIS Oct 30, 2002 764 US While not pretty, this should satisfy your query: Code: $ find . -type f -name "????????????????????????????????????????????????*" -print "Proof that there is intelligent life in Oregon. Well, Life anyway. Upvote 0 Downvote
While not pretty, this should satisfy your query: Code: $ find . -type f -name "????????????????????????????????????????????????*" -print "Proof that there is intelligent life in Oregon. Well, Life anyway.
Jun 1, 2006 #3 motoslide MIS Oct 30, 2002 764 US Sorry, that was supposed to appear as one continuous line. "Proof that there is intelligent life in Oregon. Well, Life anyway. Upvote 0 Downvote
Sorry, that was supposed to appear as one continuous line. "Proof that there is intelligent life in Oregon. Well, Life anyway.
Jun 2, 2006 Thread starter #4 AIXtexas Technical User Feb 5, 2002 80 US Thanks! That did it. Shane Upvote 0 Downvote