01-23-04 10:01 PM
In article <baea5fa.0309050629.21712bd3@posting.google.com>,
Rob Baxter <rbaxter@cyence.com> wrote:quote:
>Hi,
>
>I have looked through the arguments for 'dir' and 'ls' on a redhat 8.0
>linux system and can't seem to figure out how to generate output that
>includes the file and the path to that file. I'm using BASH. I need:
>
>/path/to/file1.txt
>/path/to/file2.txt
>
>instead of (ls -1):
>
>file1.txt
>file2.txt
>
>Any ideas? Surely this is possible, thanks in advance as always.
ls /path/to/*
If you want to see the dot-files as well:
ls /path/to/.* /path/to/*
--
Barry Margolin, barry.margolin@level3.com
Level(3), Woburn, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the gro
up.
[ Post a follow-up to this message ]
|