They are most useful for a template command, such as:
  @BAKE cc @FILENAME -o @SHORT @ARGS
 
-Backslash, while otherwise ignored, will be respected at the end of the line
-to concatenate lines together or if added to before any of listed macros will
-yield the unfettered text.
+Backslash, while otherwise ignored, will be respected at the end of the line to
+concatenate lines together or if added to before any of listed macros will yield
+the unfettered text. \SPECIAL_NAME will result in SPECIAL_NAME in the executed
+shell command. Backslashes are applicable to all symbols used by Bake, they are
+ignored otherwise.
+
+--- Expunge Extension ---
+
+Removes any singular file or directory non recursively defined within @{...},
+this has no effect on the normal processing of the statement and is macro'd out
+before it is executed.
 
 --- Options ---
 
-only one option may be in use at a time, and must come as the first argument.
+Options must come as the first argument, and may be merged together, such as -xn.
 
  -h, --help: displays help message, similarly to empty input.
  -n, --dry-run: DRYRUN, does NOT run anything!
+ -x, --expunge: See above Expunge Extension section.
 
 --- Shake ---
 
 
 \fBShake\fP does not support some features of \fBBake\fP, such as \fB@STOP\fP or \fBbinary files\fP,
 please avoid its use.
 
-Options [Only one, Must always be put first]
+Options [Must always be put first, may be merged together]
 
 .HP
 .B \-v \-\-version, \-h \-\-help, \-n \-\-dry\-run
 These will expand to their counterpart statically first thing.
 These may only be inserted inside of markers.
 .TP
-.B $@
+.B @FILENAME, $@
 returns target\-file                (abc.x.txt)
 .TP
-.B $*
+.B @SHORT, $*
 returns target\-file without suffix (abc.x.txt \-> abc.x)
 .TP
-.B $+
+.B @ARGS, $+
 returns
 .B arguments
 
 
   "rest of line, or if found within the file, until the " BOLD "@STOP" RESET " marker.\n"             \
 
 #define DESC                                                                                \
-  "Options [Must always be first]\n"                                                        \
+  "Options [Must always be put first, may be merged together]\n"                            \
   "\t" DIM "-h --help" RESET", " BOLD "-n --dry-run" RESET ", " BOLD "-x --expunge\n" RESET \
   "Expansions\n"                                                                            \
   "\t" YELLOW "@FILENAME" RESET "  returns target-file                (abc.x.txt)\n"        \