vote up 6 vote down star

This is similar to this question, but I want to include the path relative to the current directory in unix. If can do the following:

ls -LR | grep .txt

But it doesn't include the full paths. For example, I have the follow dir structure:

test1/file.txt
test2/file1.txt
test2/file2.txt

The code above will return:

file.txt
file1.txt
file2.txt

How can I get it to include the paths relative to the current directory using standard nix commands?

flag

70% accept rate
This should be moved to superuser.com. I don't know how to do that except for a close vote, but I do think this is a worthwhile question. – James McMahon Aug 26 at 19:18
I agree – Darryl Hein Aug 26 at 19:40

6 Answers

vote up 8 vote down check

Use find:

find . -name \*.txt -print

On systems that use GNU find, like most GNU/Linux distributions, you can leave out the -print.

link|flag
...and for that matter you can leave out the '.' – Adam Mitz Oct 29 '08 at 6:01
vote up 4 vote down

Try find. You can look it up exactly in the man page, but it's sorta like this:

find [start directory] -name [what to find]

so for your example

find . -name "*.txt"

should give you what you want.

link|flag
vote up 1 vote down

You could use find instead:

find . -name '*.txt'
link|flag
vote up 0 vote down

unfortunately, 'find' puts a tremendous load on the system compared to 'ls'. you could always write a perl script which formats the output of 'ls -R' to show path info with every file name.

link|flag
I'm guessing this depends on the size of the directory. For small directories I think the load would be minimal. – Darryl Hein Oct 7 at 22:13
vote up 1 vote down
DIR=your_path
find $DIR | sed 's:""$DIR""::'

'sed' will erase 'your_path' from all 'find' results. And you recieve relative to 'DIR' path.

link|flag
vote up 0 vote down

here is the perl script:

sub format_lines($)
{
    my $refonlines = shift;
    my @lines = @{$refonlines};
    my $tmppath = "-";

    foreach (@lines)
    {
    	next if ($_ =~ /^\s+/);
    	if ($_ =~ /(^\w+(\/\w*)*):/)
    	{
    		$tmppath = $1 if defined $1;	
    		next;
    	}
    	print "$tmppath/$_";
    }
}

sub main()
{
        my @lines = ();

    while (<>) 
    {
        push (@lines, $_);
    }
    format_lines(\@lines);
}

main();

usage: ls -LR | perl format_ls-LR.pl

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.