Doubt in ls command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Doubt in ls command
# 1  
Old 01-04-2014
Doubt in ls command

dear users and experts,

i am stuck withis command and i am unable to understand what is it doing??

Code:
ls -d *


Last edited by Don Cragun; 01-04-2014 at 09:30 AM.. Reason: Add CODE tags.
# 2  
Old 01-04-2014
Have your tried the command?:
Code:
man ls

What is the command ls -d *doing that has you confused?
This User Gave Thanks to Don Cragun For This Post:
# 3  
Old 01-04-2014
i mean i actually need the difference between ls -d * and ls -d and ls *

and when i use ls -d only then i get .(dot) as my response what does that mean??

Last edited by Don Cragun; 01-04-2014 at 09:32 AM.. Reason: Add CODE tags.
# 4  
Old 01-04-2014
Quote:
Originally Posted by seshank
i mean i actually need the difference between ls -d * and ls -d and ls *

and when i use ls -d only then i get .(dot) as my response what does that mean??
Is this a homework assignment?

What did the ls man page say happens if no file operands are given when you invoke the ls utility?

What did the ls man page say the -d option to ls does?

In addition to looking at the output from the commands:
Code:
ld -d *
ls -d
    and
ls *

maybe you should also look at the output from the commands:
Code:
ls
ls "$HOME"
    and
ls -d "$HOME"

(The last two commands above assume that you are using a shell that understand basic Bourne shell syntax. If you're using a C-shell (csh) derivative, you'll need different examples. What shell are you using?)
This User Gave Thanks to Don Cragun For This Post:
# 5  
Old 01-05-2014
Thanks for the guidance...by the way its not any assignment i was trying to learn red hat !!!!
# 6  
Old 01-05-2014
Quote:
man ls
...
-d, --directory
list directory entries instead of contents
means 'list the given directories but not their contents'.
More sense makes
Code:
ls -ld

# 7  
Old 01-05-2014
actually when u run
1) ls -d
it shows '.' because it shows the present dir pointer...
2) ls -d *
it tries to "ls -d" all the contents of the current dir... so it will eventually show the same content as "ls" itself....

for any query try to "ls -d" any FILE... it will show the file.. or for DIRECTORY... it will show the directory
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Grep command doubt

Hi all, I need to find the line by using grep command with the two occurence of word in the same line. I tried the below example it prints the word choice. cat nohup.out Dictionary utl is completed. file is completed. Dictionary file is completed. grep 'Dictionary\|file'... (0 Replies)
Discussion started by: arun888
0 Replies

2. Shell Programming and Scripting

Mailx command doubt

hi all, I would need to add the description in the below syntax. let me know the below syntaxt how it can be changed to add the description in the below. ps -ef | grep "server" | mailx -s "servers currently which are running" operational@acel.com Server 62 -> Used for User acessing.... (14 Replies)
Discussion started by: arun888
14 Replies

3. UNIX for Advanced & Expert Users

Doubt on setserial command

My understanding is that "setserial" command is used to change the attributes of serial device files (ttyS) managed by the linux serial driver(serial module). My doubt is, using setserial command is it possible to change the attributes of other serial device files managed by a different driver... (2 Replies)
Discussion started by: Kesavan
2 Replies

4. Shell Programming and Scripting

command substitution doubt

Hi, I almost always use back quotes in scripts to assigin output of a command to a variable. eg: file=`basename a/b/c/d/file` year_mon=`date +%Y%m` But the same can be achieved like: file=$(basename a/b/c/d/file) year_mon=$(date +%Y%m) I would like to know if there is... (3 Replies)
Discussion started by: wanderingmind16
3 Replies

5. Shell Programming and Scripting

Doubt with ftp command

Hi linux experts, I am using ftp command as : ftp hostname but it says unable to connect, if i am using the same in sftp it is working : sftp hostname it works. so please help me how should i use ftp command. (8 Replies)
Discussion started by: salil2012
8 Replies

6. Shell Programming and Scripting

locate command doubt !!!

Hello, I want to search for a file/directory named "abc" which is located anywhere in the given unix system. I am using the command :- But the problem is that this is giving me all combinations of files with have 'abc' in their name. But can I know the option to be used to get the location... (5 Replies)
Discussion started by: nsharath
5 Replies

7. Shell Programming and Scripting

doubt in banner command !!!

hello, I am using banner command in my shell.I used :- The problem is that the output is printed in 3 separate lines.I want to display it in a single line.If the size is not enough then at least 2 words should come in the same line. Can you tell me what is the option in banner that would help... (4 Replies)
Discussion started by: nsharath
4 Replies

8. UNIX for Dummies Questions & Answers

doubt in tr command

Hi, I am trying to understand a script and found a line as follows: tr '\211\233\240' '\040' < $IN_FILE | tr -cd '\11\12\15\40-\176' > $TEMP_FILE Can any one explain the above line .. What are they trying to translate using the tr command.. I have not used tr command.. so feeling little bit... (2 Replies)
Discussion started by: risshanth
2 Replies

9. UNIX for Advanced & Expert Users

Doubt in SED command

PLEASE EXPLANIN ME... sed 's~\(.*\)\(<name>\)\(.*\)\(</name>\)\(.*\)~\2\3\4~' this is the format <start><name>123<\name><addr>BAC<\addr><loc>sfo<\loc></start> (1 Reply)
Discussion started by: gksenthilkumar
1 Replies

10. Shell Programming and Scripting

Doubt in find command

Hi All, I wanted to list all the files in the current directory which contains the pattern "error". I tried the following grep command grep -i 'error' *.* but i got the error message "ksh: /usr/bin/grep: 0403-027 The parameter list is too long." Any idea why the grep didn't work? Note:... (3 Replies)
Discussion started by: mona
3 Replies
Login or Register to Ask a Question