up vote 1 down vote favorite
share [g+] share [fb]

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?

link|improve this question

1  
Maybe it'd help if you wrote what you need it for? – miccet Jun 3 '09 at 12:44
1  
Are you trying to view help for windows commands or linux commands? – poundifdef Jun 3 '09 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. – jrharshath Jun 3 '09 at 12:53
@rascher neither. – jrharshath Jun 3 '09 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 '09 at 16:00
feedback

9 Answers

up vote 3 down vote accepted

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|improve this answer
mm hmm.. more like it. Thanks! – jrharshath Jun 3 '09 at 13:15
feedback

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|improve this answer
no cygwin, please – jrharshath Jun 3 '09 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 '09 at 13:05
@dan pls view my clarification comment in the question. can i use cygwin to better my situation? – jrharshath Jun 3 '09 at 13:16
feedback

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

link|improve this answer
Noooo! not help for dos commands! by god, don't even call them windows commands! – jrharshath Jun 3 '09 at 12:54
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Install cygwin.

link|improve this answer
feedback

In DOS, you can type HELP

link|improve this answer
feedback

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|improve this answer
feedback

assuming you have loaded and are using the Windows Subsystem for Unix Applications from a shell (I prefer the C shell) its in /usr/share/man. Just:

   set MANPATH "/usr/share/man"

in your .cshrc or .login startup files and you will then be able use the command:

   man 1 csh 

to get manual information on the "csh" command from manual set 1.

hope this helps. - Deck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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