Welcome to a frustrating world.
Simplest way to start programming LISP is as you are doing, (command...... ) and what follows command is exactly as you would type into the command line, unless you are happy for the LISP to have a dialogue box open (automation is great - dialogue boxes are useful, but user interaction is slow).
Same as the command line there are prefixes to a command:
. (dot) is the native command. It is possible to redefine a command, or call a LISP by the same name as a command (LISP loads last so that is the command that will be used). 'dot' prefix will revert to the native original command
_ (underscore) is for the AutoCAD native language version of the command, that is English. Other countries use other languages and the command names are replaced... however the English command can still be used with _ - useful if for example you share LISPs particularly internationally
- (dash) is for command line version running if it exists, no dialogues and this means you can take away user interaction. A common first LISP might be a PDF plotting routine where (command "-plot".....) lets you plot without the dialogue box
there are a couple of others but these are the main one. As in your question, you can add them together.
The arguments after the command name will be the same as you would use in the command line.
I'd probably only really use . and - (I don't share many LISPS, no need for _ )