answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the purpose of -d to the ls command?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write the Linux command to display the information about LS command?

Using man ls will open the manual page for the ls command. The ls command lists the files and folders in the current directory.


Is ls is external or internal command?

The 'ls' command is an external command (found in /bin)


Is the ls command in Linux equivalent to ls -FC?

The 'ls' command is the same in Linux and Unix systems. System Administrators may set up an alias that has the -FC or other options but the command itself with no other parameters (ls) is just the 'ls' command.


Linux command to list a folders contents?

The LS command: ls folder Type man ls for more details.


What is Unix ls - l?

the "ls" command gives a listing of all the files in the current working directory, "ls" with the -l option gives the listing in vertical format along with file permissions, owner, group, and date when it was last modified. To see a more detailed explanation of the "ls" command and all its options run the command "man ls", man will also work with any other standard Unix/Linux command to give a detailed explanation of its purpose and various options.


Which command illustrates how to obtain helpful documentation for the ls command?

Use either the 'man' command or the 'info' command with ls to get more information on options and output.


How do you list all of the files in the current directory in Unix?

the command is - ls there are other options and flags for the ls command which can be viewed by typing man ls if you type 'man ls' in a google search, it will show you the same manual


What does man ls abcdat command do in Linux?

The command "man ls" will tell you about the 'ls' command. The last part will be ignored because it isn't part of the manual entry for the 'ls' command.The command as you can given it is most likely because you want to know what will happen when you issue the 'ls abcdat' command in Linux. The answer is that it will list out the name (in a short form) of the file or directory abcdat if it exists in your current working directory.


What is the Linux command used to list the contents of a directory?

ls will list the contents of a directory.


What is syntax Is command?

The 'ls' command has many switches and options, especially depending on which version of Unix or Linux you are talking about. The best way to find out is to try either: man ls info ls ls --help depending on the system.


What is the difference between ls and vdir command in Unix?

ls is the default command that lists the contents of a directory. vdir is a common alias for the command: ls -al That command lists the contents of a directory as well as information about the file such as owner, group, file size, permissions, last modified, etc.


What is ls-ua command do?

Shows the contents of the current directory (including hidden files) and sorts them by access time. Note: there should be a space between ls and -ua (ie. ls -ua) Note: this kind of information can be accessed via the man ls command, it will bring up the manual for the command in question.