Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-24-2008, 03:52 AM
|
#1
|
|
Member
Registered: Feb 2006
Location: Cape Town,South Africa
Distribution: Fedora Core 8
Posts: 183
Rep:
|
ls - Do not list full path only filename
Hi,
I'm doing the following command which gives me all the matching entries,but i'd like to see only the filename,not the full path,so i'm doing this..
Code:
[root@accountingdb scripts]# ls --format single-column /var/www/html/CSA20June/B_Berg/*20080620*
/var/www/html/CSA20June/B_Berg/ipB_Berg200806200001.cgi
but i only want the filename(ipB_Berg200806200001.cgi) returned.
IS there some way in ls to throw away the full path, and only list the filename? I went through the man pages, but i could not find anything. I've tried some pipe commands to grep as well, but my grep skills is not nearly good enough it seems.
Any suggestions how can i achieve this?
Thanks
|
|
|
|
07-24-2008, 04:09 AM
|
#2
|
|
Member
Registered: Oct 2005
Location: India
Distribution: Redhat 7-9,Fedora Core 3 - 9, RHEL 4 -5, CentOS 4 - 5, Ubuntu 7.10 - 12.10, Mandirva 2008 -2009
Posts: 133
Rep:
|
First redirect the whole output to a file say result.txt
Then count the number of / comes in the file path(I hope all the files are from same folder as per your above query) and run this command:
cut -d / -f# /path/to/result.txt
Where # is the number of slashes+1 i.e, for the path /var/www/html/CSA20June/B_Berg/ipB_Berg200806200001.cgi, the # should be 7.
I am not a scripting master, I had got this solution for a similar problem earlier and it works!
--Dipu
----------------------------
Windows? reboot. Linux? Be root!!
http://www.smartdipu.info
|
|
|
|
07-24-2008, 04:10 AM
|
#3
|
|
Member
Registered: Feb 2006
Distribution: Debian, Maemo
Posts: 341
Rep:
|
You can prefix it with the basename command.
Code:
basename `ls /some/long/path/*extension`
will give you only the filename.
edit: apparently basename takes only one arg. To workaround that, xargs seems to do fine:
Code:
ls /some/path/*txt | xargs -n1 basename
Last edited by arungoodboy; 07-24-2008 at 04:17 AM.
Reason: added better version
|
|
|
|
07-24-2008, 04:36 AM
|
#4
|
|
Member
Registered: Feb 2006
Location: Cape Town,South Africa
Distribution: Fedora Core 8
Posts: 183
Original Poster
Rep:
|
Quote:
Originally Posted by arungoodboy
edit: apparently basename takes only one arg. To workaround that, xargs seems to do fine:
Code:
ls /some/path/*txt | xargs -n1 basename
|
This works perfectly thanks. I find it a bit strange that one can't do this directly from ls,but i guess as long as there is a way do do it, all is well.
Thanks
|
|
|
|
07-24-2008, 04:58 AM
|
#5
|
|
Member
Registered: Feb 2006
Distribution: Debian, Maemo
Posts: 341
Rep:
|
If you actually cd to the folder first and then do ls, you'll get the filename like you want it. But when you pass the path to ls, it displays that path followed by the filename.
|
|
|
|
03-06-2010, 05:29 PM
|
#6
|
|
LQ Newbie
Registered: Mar 2010
Posts: 1
Rep:
|
Another way to list files using ls using only ls
ls -m1
|
|
|
|
03-06-2010, 05:47 PM
|
#7
|
|
Senior Member
Registered: Sep 2003
Posts: 1,089
Rep:
|
looks like ls -m1 is the weiner...
but if you need a loop to process the files.. id go like this
Code:
for f in /var/www/html/CSA20June/B_Berg/*20080620*
do
echo ${f##/*/}
done
you could also test if $f is a direcotyr or not if you have directories you dont want to see....
|
|
|
|
06-14-2013, 02:08 PM
|
#8
|
|
LQ Newbie
Registered: Jun 2013
Posts: 1
Rep: 
|
Not quite
In ls -m1 the -m is overkill
ls -1 is what you're actually doing (-1 overrides the other parameter)
|
|
|
|
06-14-2013, 04:00 PM
|
#9
|
|
Senior Member
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 1,731
|
Quote:
Originally Posted by Bryan H
In ls -m1 the -m is overkill
ls -1 is what you're actually doing (-1 overrides the other parameter)
|
Neither of those work on my machine...
Code:
$ ls /home/user/comps/srv1/chassis/*
/home/user/comps/srv1/chassis/SC846.pdf
$ ls -1 /home/user/comps/srv1/chassis/*
/home/user/comps/srv1/chassis/SC846.pdf
$ ls -m1 /home/user/comps/srv1/chassis/*
/home/user/comps/srv1/chassis/SC846.pdf
$ ls /home/user/comps/srv1/chassis/* | xargs -n1 basename
SC846.pdf
The man page for -1 says "list one file per line" and for -m says "fill width with a comma separated list of entries", neither of which claim to do what the OP is asking, and neither of which actually do what the OP is asking either (at least not on my machine).
Last edited by suicidaleggroll; 06-14-2013 at 04:02 PM.
|
|
|
|
06-14-2013, 04:05 PM
|
#10
|
|
LQ Newbie
Registered: Jun 2013
Location: New York City
Distribution: Arch
Posts: 15
Rep:
|
Quote:
Originally Posted by arungoodboy
If you actually cd to the folder first and then do ls, you'll get the filename like you want it. But when you pass the path to ls, it displays that path followed by the filename.
|
The find command can list filenames recursively and omit the full paths by using printf
Example
Code:
find /path/to/directory/ -type f <options> -printf "%f\n"
This will go through the directory you listed including subs and show only the filenames without the full paths.
Last edited by linuxCode; 06-14-2013 at 04:40 PM.
|
|
|
|
06-16-2013, 04:51 AM
|
#12
|
|
Senior Member
Registered: Jul 2007
Location: Directly above centre of the earth, UK
Distribution: SuSE, plus some hopping
Posts: 3,692
|
Well, yes, you shouldn't really parse the output of 'ls', because it can, potentially, be quite variable over releases and with different set-ups, but just this once...
i) Does 'ls -D -1' do what you are asking for? I can't say that I know all that much about 'dired' mode, but superficially the output looks quite similar to what you are asking for, once it has been put into single column mode. Obviously, all the warnings of imminent doom, bad karma and possibly even garden gnomes and stone cladding, from the wooledge link apply.
ii) If you were going to parse the 'path...filename' output to just give 'filename', you would want to use 'basename' to strip, errr, the basename from the full path string (while busily noting, but ignoring for this application, its partner 'dirname'). I don't see any case whatever for doing this, but you should probably note the existence of basename/dirname in case that you have need of them, in future.
|
|
|
|
Yesterday, 12:21 AM
|
#13
|
|
Guru
Registered: Aug 2004
Location: Brisbane
Distribution: Centos 6.4, Centos 5.9
Posts: 15,261
|
I agree with suicidaleggroll, none of the ls switches work for what the OP asked, (inc -D -1).
Use xargs, or param expansion (post #7) or (better) find.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 02:32 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|