Jun 1, 2006 #1 AIXtexas Technical User Joined Feb 5, 2002 Messages 80 Location 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 Joined Oct 30, 2002 Messages 764 Location 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 Joined Oct 30, 2002 Messages 764 Location 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 Joined Feb 5, 2002 Messages 80 Location US Thanks! That did it. Shane Upvote 0 Downvote