answersLogoWhite

0

What else can I help you with?

Related Questions

What command will display files starting from z in unix?

Use the command: ls z* for those files in your current working directory.


What would the syntax of a command to list all documents in a directory that have the extension doc?

For windows: dir *.doc For Unix/Linux: ls *.doc


What command verifies your source directory works?

Not sure what you mean by 'directory works' but a common command is 'ls' to see what is in the directory.


What command creates a sub directory under a directory?

Mkdir command creates a subdirectory under a directory (MD creates a directory) . The command Chdir changes the current Default directory(CD changes the current directory). The Rmdir removes the subdirectory(RD removes a directory).


Which MS-DOS command is used to delete a directory and its sub directories in one pass?

To delete directory and sub directory in single command, use "deltree" command..


What is the command to view the contents of a directory?

Go to the directory by "CD" command say "CD MyDoc" and press enter.. Now run "dir" command to see the contents of the directory..


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

ls will list the contents of a directory.


What is the Linux command for displaying a working directory?

The command pwd displays your current/present working directory.


Which command would a user type on the command line to find out what directory in the directory tree he is currently in?

PWD


How do you identify the working directory in Linux?

The command 'pwd' will identify the full path of the present working directory.


What is the pwd command in Linux?

The pwd command prints the working directory. The working directory is the directory you are "in", where operations on files that don't have an absolute path specified will be performed. For instance, if my working directory is /home/username/stuff, then the command echo "test" > test.txt would place the file test.txt in that directory.


What does the question mark mean in a command line?

Its a wildcard for one character. (Example): if you want to find files in the directory that start with A & have a three letter file extension, you would use: a*.???