Usage:
g32.exe | ./e [files] [-options] [files] # hyphen switches precede the files they affect
Note: Option switches may appear anywhere on the command line, but they
only affect files AFTER the switch.
Note: Files on the command line BEFORE the switch are unaffected.
Note: Switches -b and -i require a parameter which must immediately follow WITHOUT
a space character between them.
-a WILDCARD.SPEC g32.exe -a *.* ("Load All") forces all matching files to be selected for loading. Load by OS wildcard, not LoadWildFromDos variable.
./e -a *.*
-a- WILDCARD.SPEC g32.exe -a- *.* ("Pick from List") forces display of a PickList of matching files. Use TDE picklist to manage wildcard specifications.
./e -a- *.*
-b[LineLength] FILE g32.exe -b100 foobar.mac ("Binary Load") signifies a file to load in Binary mode. Load in binary mode with integer LineLength (default 64).
./e -b100 foobar.mac
-e MacroFilename g32.exe -e foobar.mac ("Execute Macro") denotes a Compiled Macro file to load and execute. Load and Execute compiled TSE macros.
./e -e foobar.mac
-h SingleFileName g32.exe -h foobar.s ("Hex Load") signifies a file to load in Hex mode. Load in hex mode.
./e -h foobar.s
-iSingleDirectoryPath g32.exe -iC:\TEMP\ ("Augment Load Dir") extends the editor's view of its load directory. Include this directory in the Editor Load Directory list. Include this dir in the Editor Load Directory list.
./e -i/mnt/c/temp/
-k KeyMacroFileName g32.exe -k foobar.kbd ("Load Keyboard Macro") denotes a Keyboard Macro file to load. Load key macros from file.
./e -k foobar.kbd
-l MacroFileName g32.exe -l foobar.mac ("Load Macro") denotes a Compiled Macro file to load. Load compiled macros from file.
./e -l foobar.mac
-n Line[,Column] g32.exe -n10,20 foobar.s ("Go To Line/Column Number") indicates a starting line and/or column. Move cursor to Line (and optional Column).
./e -n10,20 foobar.s
-r g32.exe -r ("Restore State") restores state information from previous session. Restore editing environment from last session.
./e -r
-s FILES g32.exe -s *.s ("Search SubDirs") searches through subdirectories for matching files. Search subdirectories to find filespecs.
./e -s *.s
-y g32.exe -y foobar.txt ("Browse mode") signifies a file to load in Browse mode. Load in Browse mode (Read-Only).
.e -y foobar.txt
-1 g32.exe -1 (Permit only one (1) instance of the editor)
./e -1
-1- g32.exe -1- (Start editor in a separate, non-shared instance)
./e -1-