Under DOS, what command will you type when you want to list down the files in a directory, and at the same time pause after every screen output?
a) dir /w
b) dir /p
c) dir /s
d) dir /w /p
Help me!!!
Printable View
Under DOS, what command will you type when you want to list down the files in a directory, and at the same time pause after every screen output?
a) dir /w
b) dir /p
c) dir /s
d) dir /w /p
Help me!!!
dir /w /p
dir /w - command to list only the files and directories going horizontally, taking as little as space needed.
and adding the /p - adds the Pauses after each screenful of information.
Further help
http://www.computerhope.com/dirhlp.htm
Type
dir /?
to see a brief summary of all available options.
dir |more
Will make the screen pause and you press any key to continue.
You are Welcome.