cmd more? command

moath farhoud 1 Reputation point
2020-10-16T07:27:31.903+00:00

32863-more.png

what does more? mean when we type
^_^ in the cmd

Windows for business Windows Server User experience Other
{count} votes

2 answers

Sort by: Most helpful
  1. Leon Laude 86,026 Reputation points
    2020-10-16T07:44:41.38+00:00

    Hi @moath farhoud ,

    In the Command Prompt (cmd.exe) a long command can be spread out over multiple lines if each line's last character is the caret ^ character.

    For example:

    echo ^  
    Hello world! ^  
    

    ----------

    (If the reply was helpful please don't forget to upvote or accept as answer, thank you)

    Best regards,
    Leon

    0 comments No comments

  2. Anonymous
    2020-10-16T08:53:08.543+00:00

    Hi,

    The ^ is the escape character. It make the following symbol be treated as ordinary text. It's usually prefixed to the special characters & \ < > ^ |. It could also escape the Carriage Return + Line Feed (CR/LF) at the end of a line to split a line into multiple lines.

    In your case ^_ is the same to _ as _ is not a special character and there's no character to be escaped by the second ^. That's why you see the prompt "More?".

    Best Regards,
    Ian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.