answersLogoWhite

0

The command, help xcopy |more, List information one screen at a time when using a command line to get help about a command line

I believe the author of this is question is referencing question #28 on Reviewing the Basics for Chapter 13 of 'Guide to Managing and Maintaining Your PC' 7th Edition by Jean Andrews.

Answer I came up with:

The parameter |more, when used with other commands, requires the user to respond to a prompt at the end of a fully displayed screen of text that signals the next line of text to be displayed to the user.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the purpose of the parameter at the end of a command line?

It depends on the command; you need to be more specific in your question.I believe the author of this is question is referencing question #28 on Reviewing the Basics for Chapter 13 of 'Guide to Managing and Maintaining Your PC' 7th Edition by Jean Andrews.Answer I came up with:The parameter |more, when used with other commands, requires the user to respond to a prompt at the end of a fully displayed screen of text that signals the next line of text to be displayed to the user.


What is a parameter in computer?

sometimes DOS requires additional information, which is specified in one or more parameters after the command should operate on.


Why in java string args is passed in main method?

The String[] args parameter is an array of Strings passed as parameters when you are running your application through command line in the OS. The java -jar command will pass your Strings update and notify to your public static void main() method. To learn more about data science please visit- Learnbay.co


What is the AutoCAD command used to determine if two or more entities reside on the same plane?

The Line Command!


5 What is the purpose of the command interpreter?

A command interpreter reads instructions from the user or from a file of instructions and executes them by converting them into one or more system calls.


What is the equivalent of grep command in windows?

Windows does not have such command. Windows command line is extremely limited. If you want more advanced functionality install cygwin-bash or Microsoft PowerShell


Why is there a command prompt if you can hack with it?

Command line interfaces have existed long before Graphical Interfaces. They are far more efficient for power users.


How do i run a disc from command line in fedora?

First you have to mount it using the mount command. You should google "mounting filesystems" to read more about this.


What is a parameter and why are they useful?

Parameter is basically another word for "conditions", or "requirements". A parameter for good personal economy for instance is not to spend more than you earn.


What are the uses of the command line?

From the command line (in windows) you can access many of windows internal features such as trouble shooting the dll structure and network analysis for more information you can type 'help' in CMD (command line) Most other operating systems have command lines, such as Linux and Ubuntu WARRNING: you can really damage your computer if you don't know what your doing


What is the difference between an Express Setup and a Command Line Setup?

Express set-up usually makes most of the choices for you. Command-line set-up gives you more control to set different parameters.


What is use of string args in java?

If you're referring to "args" in the line: "public static void main(String args[])", then it is the name of the array that holds the command line arguments. So, if you called your java program (called myJavaProgram) from the command line using the following line: java myJavaProgram Hello World "These are args" Then args would have the following values stored in it: args[0] = "Hello" args[1] = "World" args[2] = "These are args" If you called your program from the command line like this: java myJavaProgram Different Args then args would contain args[0] = "Different" args[1] = "Args"