Re: find (path/filename) > 108 characters
Cyrus Kriticos wrote:
>
>
> Charles Russell wrote:
>> Is there a simple way to print out all the files in a directory tree
>> that have pathname + filename > 108 characters?
>
> [GNU grep]
>
> find /path_to_tree -type f | grep -E "^.{109}"
>
That does it. Thanks.
|