I have a java file called 'move.class' I want to make it into a bash command so people can call it from the bash terminal, input options or parameters, and read its manual page:
People should be able to use this like any other command:
$ sudo move | more
I need to read the arguments and parameters (in java)
$ move -i --string=HELLO file1 fil2
I also need it to have a man page so a user can say:
$ man move
To get comprehensive instructions on how to use this command.