What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Typing help in command line is too fast.

Typing help in command line is too fast.
Author: Message:
somelauw
Junior Member
**

Avatar

Posts: 93
34 / Male / –
Joined: Jan 2006
O.P. Typing help in command line is too fast.
To show a list of batch/commandline commands you can press help in a command prompt. But how to read it?

I tried:

code:
rem file.bat
help
pause

It went crazy.

I found out pressing break stops the program, but then I can only read half the file.
Especially when reading a single command like
help echo
won't make me read it because if I press too fast I read nothing. If I press too slow I miss it.

Google searching for batch help, doesn't show me links with exactly the same information.

This post was edited on 04-14-2007 at 12:21 PM by somelauw.
Please add one 6 to my postcount and I'm tha Beast!
This signature was written when my postcount was 66
04-14-2007 12:18 PM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Typing help in command line is too fast.
Simply scroll the command window up after it has finished displaying everything.



This post was edited on 04-14-2007 at 12:25 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
04-14-2007 12:21 PM
Profile PM Find Quote Report
somelauw
Junior Member
**

Avatar

Posts: 93
34 / Male / –
Joined: Jan 2006
O.P. RE: Typing help in command line is too fast.
But help.exe automatically closes after having run it.
Please add one 6 to my postcount and I'm tha Beast!
This signature was written when my postcount was 66
04-14-2007 12:22 PM
Profile E-Mail PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Typing help in command line is too fast.
If you used the batch file you showed in your first post then the window will not close as long as you don't press a key... Simply scroll the window to read all the text.



Anyways, if you are working in a bacth file or wanting to do stuff on the command line it is always best (and logic) to first start the command interpreter, instead of doing everything from inside a batch file or from Windows Explorer:

Windows Start > Run > cmd

;)

This post was edited on 04-14-2007 at 12:28 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
04-14-2007 12:25 PM
Profile PM Find Quote Report
somelauw
Junior Member
**

Avatar

Posts: 93
34 / Male / –
Joined: Jan 2006
O.P. RE: Typing help in command line is too fast.
I opened from commandprompt. I am finally able to read it.
Thanks.
Please add one 6 to my postcount and I'm tha Beast!
This signature was written when my postcount was 66
04-14-2007 12:35 PM
Profile E-Mail PM Find Quote Report
andrewdodd13
Senior Member
****

Avatar
Oh so retro

Posts: 870
Reputation: 16
34 / Male / Flag
Joined: Jan 2005
RE: Typing help in command line is too fast.
You could've also done:
help | more
Which would've paused after every page of output.
[Image: AndrewsStyle.png]
04-14-2007 01:16 PM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Typing help in command line is too fast.
quote:
Originally posted by andrewdodd13
You could've also done:
help | more
Which would've paused after every page of output.
which still needed the command interpreter though... it wouldn't work from Windows Run command.

(and once you presed a key to go to the next screen you can't go back to the previous one, except with scrolling)
.-= A 'frrrrrrrituurrr' for Wacky =-.
04-14-2007 01:38 PM
Profile PM Find Quote Report
andrewdodd13
Senior Member
****

Avatar
Oh so retro

Posts: 870
Reputation: 16
34 / Male / Flag
Joined: Jan 2005
RE: Typing help in command line is too fast.
My bad, I should've tried it first :(.

Of course, there's always cmd /c help | more - this does work, because it starts the program from within a shell.
[Image: AndrewsStyle.png]
04-14-2007 06:19 PM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: Typing help in command line is too fast.
yep...

somelauw, there are also of course some other things you can do.
eg: to print all the help:
c:\> help > prn

to make a textfile of all the help:
c:\> help > help.txt
which you then can read with notepad for example

etc...

;)
.-= A 'frrrrrrrituurrr' for Wacky =-.
04-14-2007 07:57 PM
Profile PM Find Quote Report
somelauw
Junior Member
**

Avatar

Posts: 93
34 / Male / –
Joined: Jan 2006
O.P. RE: Typing help in command line is too fast.
I remember I tried that last one before but I see why that didn't work. I made another batch file called help.bat which was executed instead. I'm sometimes that confused. :D

Thanks a lot.
Please add one 6 to my postcount and I'm tha Beast!
This signature was written when my postcount was 66
04-14-2007 08:41 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On