You say "without tab", so are you referring to the list of possible completions generated by your shell (e.g., Bash) when you enter a command and press TAB twice?
– amadeusamadeusMar 27 '21 at 17:56
@amadeusamadeus yes exactly what you said , I'm sorry if I was not clear enough.
I could not find it with 'man service'.
– ARIKMar 27 '21 at 21:23
Most commands have a --help option that should give you an overview of their invocation. Now, service is a bit special, as the man page says: "The supported values of COMMAND depend on the invoked script". This is so because service invokes a script which may have many different options that service know nothing about. Whether the script itself has a help function depends on the script as well.
– berndbauschMar 28 '21 at 03:05
@ARIK So you are talking about the arguments the shell suggests for completion, while people commenting about man and --help think you would be talking about the options of a command. Can you relate to this question?
– amadeusamadeusMar 28 '21 at 12:09
TAB
twice? – amadeusamadeus Mar 27 '21 at 17:56--help
option that should give you an overview of their invocation. Now,service
is a bit special, as the man page says: "The supported values of COMMAND depend on the invoked script". This is so becauseservice
invokes a script which may have many different options thatservice
know nothing about. Whether the script itself has a help function depends on the script as well. – berndbausch Mar 28 '21 at 03:05--help
think you would be talking about the options of a command. Can you relate to this question? – amadeusamadeus Mar 28 '21 at 12:09