vote up 1 vote down star

I'm looking for the windows executable for the linux man (manual reader).

I tried googling around, but got frustrated with the kind of results it came up with, owing to 'man' being such a common phrase.

I got results that read "man executed in texas..".

So I look to the SO community now. Any clues?

flag

1  
Maybe it'd help if you wrote what you need it for? – miccet Jun 3 at 12:44
1  
Are you trying to view help for windows commands or linux commands? – rascher Jun 3 at 12:50
@miccet Here's my need: I have Portable Git on windows. It has a bash windows binary. But when it tries to show me help for some commands, the poor thing complains that "there is no manual reader". So if I get a man binary, I'll place it in the bin/ directory and all will be hunky-dory. – harshath.jr Jun 3 at 12:53
@rascher neither. – harshath.jr Jun 3 at 12:54
@U62: He did clarify his question, in a comment. He should have edited the question, but I don't think it's worth a downvote. – John Saunders Jun 3 at 16:00

9 Answers

vote up 2 vote down check

If you are looking to open linux style man pages in Windows, then get Groff for Windows to view the man pages on your command line as follows:

groff -Tascii -mm your_file | more
link|flag
mm hmm.. more like it. Thanks! – harshath.jr Jun 3 at 13:15
vote up 3 vote down

If you install Cygwin, you'll get a man command ... That will of course not cover Windows concepts though; Windows documentation is not delivered in man file format.

link|flag
no cygwin, please – harshath.jr Jun 3 at 12:33
@harshath.jr: If you want proper man and proper git on Windows, there's nothing better than Cygwin. Honestly, Cygwin is one of the best things that Windows still has going for it :P Seriously, though: Why the aversion to Cygwin? I find there is a misplaced perception that's it's large and invasive. It can be configured to be quite minimal and it's anything but invasive (everything is under a single directory and it stores practically nothing in the registry). – Dan Moulding Jun 3 at 13:05
@dan pls view my clarification comment in the question. can i use cygwin to better my situation? – harshath.jr Jun 3 at 13:16
vote up 1 vote down

Most windows commands have a /h switch for usage and brief routine information.

link|flag
Noooo! not help for dos commands! by god, don't even call them windows commands! – harshath.jr Jun 3 at 12:54
vote up 1 vote down

In Windows, the commands that are part of the command interpreter (cmd.exe), such as the dir, copy, ren, and such commands will display some help information with the /? switch.

Some examples:

dir /?
rename /?
copy /?

This is a hold out from the DOS days when many of the commands and programs used the backslash for the switches, and ? was used for displaying usage and help information, hence the /? switch.

Also, typing help at the command interpreter will also display a listing of all the command interpreter's commands. help <command_name> will also bring up help information as well.

Microsoft provides a Command Reference which has usage and options available for each command.

link|flag
vote up 1 vote down

Install cygwin and set the path in windows command prompt as

set PATH=C:\cygwin\bin;%PATH%

and just give 'man' it should work..

link|flag
vote up 0 vote down

Install cygwin.

link|flag
vote up 0 vote down

In DOS, you can type HELP

link|flag
vote up 0 vote down

Windows Help is typically published via .CHM files or online through the Microsoft Knowledge Base and MSDN. There isn't a central repository of help like on *NIX systems.

link|flag
vote up 0 vote down

In the start menu there is an entry "Help and Support".

link|flag
my god. not serious, are you? – harshath.jr Jun 4 at 3:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.