Next: , Previous: , Up: Top   [Contents][Index]


3.2 Command Line Switches and Arguments

SXEmacs supports command line arguments you can use to request various actions when invoking SXEmacs. The commands are for compatibility with other editors and for sophisticated activities. If you are using SXEmacs under the X window system, you can also use a number of standard Xt command line arguments. Command line arguments are not usually needed for editing with SXEmacs; new users can skip this section.

Many editors are designed to be started afresh each time you want to edit. You start the editor to edit one file; then exit the editor. The next time you want to edit either another file or the same one, you start the editor again. Under these circumstances, it makes sense to use a command line argument to say which file to edit.

The recommended way to use SXEmacs is to start it only once, just after you log in, and do all your editing in the same SXEmacs process. Each time you want to edit a file, you visit it using the existing SXEmacs. SXEmacs creates a new buffer for each file, and (unless you kill some of the buffers) SXEmacs eventually has many files in it ready for editing. Usually you do not kill the SXEmacs process until you are about to log out. Since you usually read files by typing commands to SXEmacs, command line arguments for specifying a file when SXEmacs is started are seldom needed.

SXEmacs accepts command-line arguments that specify files to visit, functions to call, and other activities and operating modes. If you are running SXEmacs under the X window system, a number of standard Xt command line arguments are available, as well as a few X parameters that are SXEmacs-specific.

Options with long names with a single initial hyphen are also recognized with the GNU double initial hyphen syntax. (The reverse is not true.)

The following subsections list:

3.2.1 Command Line Arguments for Any Position

Command line arguments are processed in the order they appear on the command line; however, certain arguments (the ones in the second table) must be at the front of the list if they are used.

Here are the arguments allowed:

file

Visit file using find-file. See Visiting.

+linenum file

Visit file using find-file, then go to line number linenum in it.

-load file
--load file
-l file

Load a file file of Lisp code with the function load. See Lisp Libraries.

-funcall function
--funcall function
-f function

Call Lisp function function with no arguments.

-eval function
--eval function
-e function

Interpret the next argument as a Lisp expression, and evaluate it. You must be very careful of the shell quoting here.

-insert file
--insert file
-i file

Insert the contents of file into the current buffer. This is like what M-x insert-buffer does; See Misc File Ops.

-kill
--kill

Exit from SXEmacs without asking for confirmation. Always the last argument processed, no matter where it appears in the command line.

-version
--version
-V

Prints version information. This implies ‘-batch’.

% sxemacs -version
SXEmacs: v22.1.15-131-gccf396e, built Sun May 10 07:40:48 2015 on bastard.steveyoungs.com
-help
--help
-h

Prints a summary of command-line options and then exits.

3.2.2 Command Line Arguments (Beginning of Line Only)

The following arguments are recognized only at the beginning of the command line. If more than one of them appears, they must appear in the order in which they appear in this table.

-show-dump-id
--show-dump-id
-sd

Print the ID for the new portable dumper’s dump file on the terminal and exit. (Prints an error message and exits if SXEmacs was not configured ‘--pdump’.)

-no-dump-file
--no-dump-file
-nd

Don’t load the dump file. Roughly equivalent to old temacs. (Ignored if SXEmacs was not configured ‘--pdump’.)

-terminal file
--terminal file
-t file

Use file instead of the terminal for input and output. This implies the ‘-nw’ option, documented below.

-batch
--batch

Run SXEmacs in batch mode, which means that the text being edited is not displayed and the standard Unix interrupt characters such as C-z and C-c continue to have their normal effect. SXEmacs in batch mode outputs to stderr only what would normally be printed in the echo area under program control.

Batch mode is used for running programs written in SXEmacs Lisp from shell scripts, makefiles, and so on. Normally the ‘-l’ switch or ‘-f’ switch will be used as well, to invoke a Lisp program to do the batch processing.

-batch’ implies ‘-q’ (do not load an init file). It also causes SXEmacs to kill itself after all command switches have been processed. In addition, auto-saving is not done except in buffers for which it has been explicitly requested.

-no-windows
--no-windows
-nw

Start up SXEmacs in TTY mode (using the TTY SXEmacs was started from), rather than trying to connect to an X display. Note that this happens automatically if the ‘DISPLAY’ environment variable is not set.

-color-terminal
--color-terminal
-ct

Tells SXEmacs to assume that any TTY frame should be colorized even when the color support was not detected. The color support is of the 8 color ANSI terminals. If color capabilities of the terminal are detected those more accurate settings are used.

-debug-init
--debug-init

Enter the debugger if an error in the init file occurs.

-debug-paths
--debug-paths

Displays information on how SXEmacs constructs the various paths into its hierarchy on startup. (See also see Startup Paths.)

-unmapped
--unmapped

Do not map the initial frame. This is useful if you want to start up SXEmacs as a server (e.g. for gnuserv screens or external client widgets).

-no-init-file
--no-init-file
-q

Do not load your SXEmacs init file. See Init File.

-no-site-file
--no-site-file

Do not load the site-specific init file lisp/site-start.el.

-no-autoloads
--no-autoloads

Do not load global symbol files (auto-autoloads) at startup. This implies ‘-vanilla’.

-no-early-packages
--no-early-packages

Do not process early packages. (For more information on startup issues concerning the package system, See Startup Paths.)

-vanilla
--vanilla

This is equivalent to ‘-q -no-site-file -no-early-packages’.

-user-init-file file
--user-init-file file

Load file as your SXEmacs init file instead of the default $XDG_CONFIG_HOME/sxemacs/init.el.

-user-init-directory directory
--user-init-directory directory

Use directory as the location of your initialization files.

-user-pkgs-directory directory
--user-pkgs-directory directory

Use directory as the location of your local, early-packages, hierarchy instead of the default. $XDG_DATA_HOME/sxemacs.

-user user
--user user
-u user

Attempt to load user init instead of your own. There is no privilege escalation going on, the SXEmacs process is still owned by you, not user. In fact, using this option is often hindered by file and directory permissions. YMMV. See Init File.

Note that the init file can get access to the command line argument values as the elements of a list in the variable command-line-args. (The arguments in the second table above will already have been processed and will not be in the list.) The init file can override the normal processing of the other arguments by setting this variable.

One way to use command switches is to visit many files automatically:

sxemacs *.c

passes each .c file as a separate argument to SXEmacs, so that Emacs visits each file (see Visiting).

Here is an advanced example that assumes you have a Lisp program file called hack-c-program.el which, when loaded, performs some useful operation on the current buffer, expected to be a C program.

sxemacs -batch foo.c -l hack-c-program -f save-buffer -kill > log

Here SXEmacs is told to visit foo.c, load hack-c-program.el (which makes changes in the visited file), save foo.c (note that save-buffer is the function that C-x C-s is bound to), and then exit to the shell from which the command was executed. ‘-batch’ guarantees there will be no problem redirecting output to log, because SXEmacs will not assume that it has a display terminal to work with.

3.2.3 Command Line Arguments (for SXEmacs Under X)

If you are running SXEmacs under X, a number of options are available to control color, border, and window title and icon name:

-title title
-wn title
-T title

Use title as the window title. This sets the frame-title-format variable, which controls the title of the X window corresponding to the selected frame. This is the same format as mode-line-format.

-iconname title
-in title

Use title as the icon name. This sets the frame-icon-title-format variable, which controls the title of the icon corresponding to the selected frame.

-mc color

Use color as the mouse color.

-cr color

Use color as the text-cursor foreground color.

-private

Install a private colormap for SXEmacs.

In addition, SXEmacs allows you to use a number of standard Xt command line arguments.

-background color
-bg color

Use color as the background color.

-bordercolor color
-bd color

Use color as the border color.

-borderwidth width
-bw width

Use width as the border width.

-display display
-d display

When running under the X window system, create the window containing the Emacs frame on the display named display.

-foreground color
-fg color

Use color as the foreground color.

-font name
-fn name

Use name as the default font.

-geometry spec
-geom spec
-g spec

Use the geometry (window size and/or position) specified by spec.

-iconic

Start up iconified.

-rv

Bring up SXEmacs in reverse video.

-name name

Use the resource manager resources specified by name. The default is to use the name of the program (argv[0]) as the resource manager name.

-xrm

Read something into the resource database for this invocation of SXEmacs only.


Next: , Previous: , Up: Top   [Contents][Index]