vote up 3 vote down star
1

I made an Unix command called macmac2unix, which converts a Word file from Mac to Unix.

How can I provide documentation for my command? I want to read about my command with man

$man macmac2unix
flag

BTW--The name "mac2unix" is already in common use for a utility that changes line-ending characters on ordinary text files. Using that name may cause confusion... – dmckee Mar 6 at 16:48
I'd suggest changing the question to make it generic. The fact that you have "recreated" mac2unix is distracting from the point of how to create a man page. – Judge Maygarden Mar 6 at 16:50
I changed the name. – Masi Mar 6 at 16:55

2 Answers

vote up 2 vote down check

I recommend Perl's POD format. Despite the name, you can use it outside of Perl scripts, and the pod2man command ships with OS X. It's a lot more sensible that troff. Reminds me of Markdown.

Here's an example pod document and the conversion script.

link|flag
vote up 0 vote down

You can apparently use also DocBook to provide Documentation for an Unix command.

link|flag

Your Answer

Get an OpenID
or

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