Re: [Newbie] Can ls command format output my way?

2016-12-18 Thread emetib
> > This Vortex won't last long enough. it only feels like -40 f where i'm at. > Several of the responses I've received are opening my eyes to > what can be done with some straight forward (if not simple) shell > commands. the beauty of the cli em

Re: [Newbie] Can ls command format output my way?

2016-12-18 Thread Richard Owlett
On 12/17/2016 10:59 AM, David Wright wrote: On Sat 17 Dec 2016 at 17:57:26 (+0200), Lars Noodén wrote: On 12/17/2016 05:40 PM, Richard Owlett wrote: [...] I don't wish anything but full path to all files in a top level directory. Followup question how should I found the answer for myself. I

Re: [Newbie] Can ls command format output my way?

2016-12-17 Thread emetib
something else that you could use is 'locate' it's on most systems nowdays and it updates each night from cron. it's not as cpu intensive and you can update is quickly with 'updatedb'. if you're just searching removable media, as in your /media/... example then find would be better. i prefer

THANK YOU [Re: [Newbie] Can ls command format output my way?]

2016-12-17 Thread Richard Owlett
On 12/17/2016 9:40 AM, Richard Owlett wrote: ls -R /media/data produces the content but not the NEEDED format. I want a list like: /media/data/dir1/filea /media/data/dir1/fileb /media/data/dir1/subdir1/filex /media/data/dir1/subdir1/filey /media/data/dir1/subdir1/filez /media/data/dir2/filea

Re: [Newbie] Can ls command format output my way?

2016-12-17 Thread David Wright
On Sat 17 Dec 2016 at 17:57:26 (+0200), Lars Noodén wrote: > On 12/17/2016 05:40 PM, Richard Owlett wrote: > [...] > > I don't wish anything but full path to all files in a top level directory. > > > > Followup question how should I found the answer for myself. I looks > > basic enough ... > >

Re: [Newbie] Can ls command format output my way?

2016-12-17 Thread Kushal Kumaran
Richard Owlett writes: > ls -R /media/data produces the content but not the NEEDED format. > > I want a list like: > /media/data/dir1/filea > /media/data/dir1/fileb > /media/data/dir1/subdir1/filex > /media/data/dir1/subdir1/filey > /media/data/dir1/subdir1/filez >

Re: [Newbie] Can ls command format output my way?

2016-12-17 Thread Lars Noodén
On 12/17/2016 05:40 PM, Richard Owlett wrote: [...] > I don't wish anything but full path to all files in a top level directory. > > Followup question how should I found the answer for myself. I looks > basic enough ... > TIA One way would be to use find combined with realpath. find

Re: [Newbie] Can ls command format output my way?

2016-12-17 Thread The Wanderer
On 2016-12-17 at 10:40, Richard Owlett wrote: > ls -R /media/data produces the content but not the NEEDED format. > > I want a list like: > /media/data/dir1/filea > /media/data/dir1/fileb > /media/data/dir1/subdir1/filex > /media/data/dir1/subdir1/filey > /media/data/dir1/subdir1/filez >

[Newbie] Can ls command format output my way?

2016-12-17 Thread Richard Owlett
ls -R /media/data produces the content but not the NEEDED format. I want a list like: /media/data/dir1/filea /media/data/dir1/fileb /media/data/dir1/subdir1/filex /media/data/dir1/subdir1/filey /media/data/dir1/subdir1/filez /media/data/dir2/filea /media/data/dir2/fileb