How do I use the cut command to only print the directories?


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers How do I use the cut command to only print the directories?
# 1  
Old 10-06-2016
Question How do I use the cut command to only print the directories?

How would I use ls -l | cut to just print the directories part from the ls -l command?

Last edited by rbatte1; 10-06-2016 at 12:47 PM.. Reason: Added ICODE tags
# 2  
Old 10-06-2016
It depends where you are starting from. Perhaps you are starting at the wrong place with ls -l. Would you be better with cut the output from ls or ls -1? If you pipe ls to another command or into a file, they are equivalent anyway. They both give you just a list file/directory names you have run it against.

If you are getting a listing and trying to select the directories from it, that's different.

Can you tell us clearly what you are trying to achieve and we can probably suggest a selection of ways to do it, but it depends where you are starting and what output you have already.

If you could paste some samples into the thread wrapped in CODE tags then we can see what we are working with.



Kind regards,
Robin
# 3  
Old 10-06-2016
Trying to learn about the cut command and use it to cut a specific column from the
Code:
ls -l

command, just wondering what I would have do to cut specific parts from text output, in this case the directories at the end of the output.

For example:

This output:

Code:
drwx------   3 user1  user  4096 19 Jan  2016 Applications
drwx------   2 user1  user  4096 22 Mar  2016 Desktop
drwx------   5 user1  user  4096  6 Oct 09:45 Documents
drwx------   3 user1  user  4096  6 Oct 09:10 Downloads
drwxr-xr-x@ 31 user1  user  4096  6 Oct 08:55 Library
drwx------   2 user1  user  4096 12 Jan  2016 Movies
drwx------   2 user1  user  4096 12 Jan  2016 Music
drwx------   2 user1  user  4096 12 Jan  2016 Pictures

Then by using the cut command should look like

Code:
Applications
Desktop
Documents
Downloads
Library
Movies
Music
Pictures

Thanks.
# 4  
Old 10-06-2016
Hello steezuschrist96,

Could you please try following commands and let me know if this helps you.
Code:
ls -d */
OR
find -maxdepth 1 -type d -printf '\n%P'

Thanks,
R. Singh
# 5  
Old 10-06-2016
Assuming you are trying to learn about the process rather than actually wanting to do anything with it directly, then......

.... If you are splitting on character count (so character 47 onwards) you could:-
Code:
ls -l | cut -c47-


..... If you are splitting on fields, you are after field 9, so:-
Code:
ls -l | tr -s " " | cut -f9 -d " "

The tr -s " " is to ensure that multiple spaces are treated as a single space.


If you actually want to use this as input, then RavinderSingh13 gave you far more sensible answers than getting a long listing and chopping it up.



I hope that this helps,
Robin
This User Gave Thanks to rbatte1 For This Post:
# 6  
Old 10-06-2016
Beware, it likes to resize the field widths when there are large files.

Juha
This User Gave Thanks to Juha Nurmela For This Post:
# 7  
Old 10-06-2016
For two reasons, cut may not be the tool of choice here:
- you can't select by field, as a non-predictable number of spaces in the owner, group, and size field doesn't allow to reliably select the file name field. translating spaces can deteriorate file names, btw.
- you can't select by character/byte position, as esp. the size field can be adapted to large numbers.

So you might need to fall back to a text utility as sed, awk, and so on.
But, la | awk '{print $9}' wouldn't help either, in case of file name containing spaces. You'd need to resort to sth like
Code:
la | awk '{sub ($1 FS $2 FS ".*" $8 FS, _); print}'

, but that also might still need some polishing.
This User Gave Thanks to RudiC For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Cut command: can't make it cut fields

I'm a complete beginner in UNIX (and not a computer science student either), just undergoing a tutoring course. Trying to replicate the instructions on my own I directed output of the ls listing command (lists all files of my home directory ) to My_dir.tsv file (see the screenshot) to make use of... (9 Replies)
Discussion started by: scrutinizerix
9 Replies

2. UNIX for Dummies Questions & Answers

Print/cut/grep/sed/ date yyyymmdd on the filename only.

I have this filename "RBD_EXTRACT_a3468_d20131118.tar.gz" and I would like print out the "yyyymmdd" only. I use this command below, but if different command like cut or print....etc. Thanks ls RBD_EXTRACT* | sed 's/.*\(........\).tar.gz$/\1/' > test.txt (9 Replies)
Discussion started by: dotran
9 Replies

3. UNIX for Dummies Questions & Answers

Cut pid from ps using cut command

hay i am trying to get JUST the PID from the ps command. my command line is: ps -ef | grep "mintty" | cut -d' ' -f2 but i get an empty line. i assume that the delimiter is not just one space character, but can't figure out what should i do in order to do that. i know i can use awk or cut... (8 Replies)
Discussion started by: ran ber
8 Replies

4. Shell Programming and Scripting

Print path files in different directories

Hi guys :) First of all Happy New Year :) so i dont know if my doubt its already here posted by other person ... i need to print to one file the path of few files that are in different directories, like this: directory muscle ATP6.aa.muscle.fasta COX1.aa.muscle.fasta . . . ... (2 Replies)
Discussion started by: andreia
2 Replies

5. Shell Programming and Scripting

Print the whole line which contains the result of the command cut

Hey everyone I have a file 'agenda' which contains: Object Day Month Year Birthday 09 02 2012 i want to extract from a script the line which contains the day the user typed. for example if he type 09 the line is showed using... (4 Replies)
Discussion started by: Goldstein
4 Replies

6. UNIX for Dummies Questions & Answers

Using grep command to find the pattern of text in all directories and sub-directories.

Hi all, Using grep command, i want to find the pattern of text in all directories and sub-directories. e.g: if i want to search for a pattern named "parmeter", i used the command grep -i "param" ../* is this correct? (1 Reply)
Discussion started by: vinothrajan55
1 Replies

7. Shell Programming and Scripting

Cut Command error cut: Bad range

Hi Can anyone what I am doing wrong while using cut command. for f in *.log do logfilename=$f Log "Log file Name: $logfilename" logfile1=`basename $logfilename .log` flength=${#logfile1} Log "file length $flength" from_length=$(($flength - 15)) Log "from... (2 Replies)
Discussion started by: dgmm
2 Replies

8. UNIX for Dummies Questions & Answers

cut and print part of a string

I have a file that contains: yahoo.com.23456 web.log.common.us.gov.8675 192.168.1.55.34443 john-doe.about.com.22233 64.222.3.4.120 sunny.ca.4442 how can i remove the strings after the last dot (.) and reprint the file? Thanks. (3 Replies)
Discussion started by: apalex
3 Replies

9. UNIX for Dummies Questions & Answers

Need help with Cut command

Hi I am using 'find' on a particular directory which has some subdirectories too,so when I search for .txt files from the parent directory, it gives all files that matches the pattern in the parent aswellas in the sub directories . eg: Iam at /a/b/c where c has many other directories in it ... (7 Replies)
Discussion started by: jagadish_gaddam
7 Replies
Login or Register to Ask a Question