Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install man page for Maven on linux?

I am using linux(mint mate), and installed maven by download & unzip & config the environment, I could use the mvn command.

I want to have man mvn, not just mvn -help, any tip?


@Update:

To make the question clear, there is no man page for mvn, because I install maven by unzip, so I want to install man page for mvn, so that I could use man mvn to get help.

like image 546
user218867 Avatar asked Jul 21 '15 14:07

user218867


People also ask

What command can be used to install the man pages?

To install man pages use the yum command or dnf command as follows on a CentOS 6/7/8/9.

Where are man pages installed?

The man pages are stored in /usr/share/man.


1 Answers

The only way to get the man page for maven is to install maven from apt-get install maven2, but the man page is exactly the same as mvn -help, so I don't see any use in using the version from the repositories because most of the time is an old version.

http://www.manpagez.com/man/1/mvn/

like image 67
isma3l Avatar answered Sep 23 '22 13:09

isma3l