views:

656

answers:

9

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?

A: 

Install cygwin.

U62
+3  A: 

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.

unwind
no cygwin, please
Here Be Wolves
@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
@dan pls view my clarification comment in the question. can i use cygwin to better my situation?
Here Be Wolves
A: 

In DOS, you can type HELP

Jon
+1  A: 

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

Cheeto
Noooo! not help for _dos_ commands! by god, don't even call them windows commands!
Here Be Wolves
+1  A: 

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.

coobird
A: 

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.

A. Scagnelli
+2  A: 

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
Ankur Goel
mm hmm.. more like it. Thanks!
Here Be Wolves
+1  A: 

Install cygwin and set the path in windows command prompt as

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

and just give 'man' it should work..

Renjith G
A: 

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

my god. not serious, are you?
Here Be Wolves