On Sun, Feb 24, 2008 at 12:51 PM, Rodolfo Medina
<[EMAIL PROTECTED]> wrote:
>  I want to sort all files with, say, .txt extension that are in the directory
>  `/path/to/dir' and all its subdirectories, and I want to perform this search
>  starting from the directory itself: how can I do that?
>
>  I didn't manage with `find'.
...
>  e.g.: suppose that in my home directory there are dir1 and dir2 and the
>  following files:
>  ~/file ~/dir1/file1 ~/dir/file2
>  I want the result of my search to be:
>  file
>  file1
>  file2

How about:
$ find /path/to/dir -name '*.txt' -exec basename {} \; | sort

-- 
Michael A. Marsh
http://www.umiacs.umd.edu/~mmarsh
http://mamarsh.blogspot.com
http://36pints.blogspot.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to