Action Arguments
================
Here is a table of the action arguments and options:
`FILE'
`--visit=FILE'
`--file=FILE'
Visit FILE using `find-file'. Note:Visiting.
`+LINENUM FILE'
Visit FILE using `find-file', then go to line number LINENUM in it.
`+LINENUM:COLUMNNUM FILE'
Visit FILE using `find-file', then go to line number LINENUM and
put point at column number COLUMNNUM.
`-l FILE'
`--load=FILE'
Load a Lisp library named FILE with the function `load'. Note:Lisp Libraries. The library can be found either in the current
directory, or in the Emacs library search path as specified with
`EMACSLOADPATH' (Note:General Variables).
`-f FUNCTION'
`--funcall=FUNCTION'
Call Lisp function FUNCTION with no arguments.
`--eval=EXPRESSION'
`--execute=EXPRESSION'
Evaluate Lisp expression EXPRESSION.
`--insert=FILE'
Insert the contents of FILE into the current buffer. This is like
what `M-x insert-file' does. Note:Misc File Ops.
`--kill'
Exit from Emacs without asking for confirmation.
The init file can access the values of the action arguments as the
elements of a list in the variable `command-line-args'. The init file
can override the normal processing of the action arguments, or define
new ones, by reading and setting this variable.