3 ##############################################################################
5 # %f The current file (if non-local vfs, file will be copied locally and
6 # %f will be full path to it)
8 # %d The current working directory
9 # %s "Selected files"; the tagged files if any, otherwise the current file
11 # %u Tagged files (and they are untagged on return from expand_format)
12 # %view Runs the commands and pipes standard output to the view command
13 # If %view is immediately followed by '{', recognize keywords
14 # ascii, hex, nroff and unform
16 # If the format letter is in uppercase, it refers to the other panel
18 # With a number followed the % character you can turn quoting on (default)
19 # and off. For example:
20 # %f quote expanded macro
22 # %0f don't quote expanded macro
23 ##############################################################################
26 @ Do something on the current file
31 @ Do something on the tagged files
37 0 Edit a bug report and send it to root
38 I=`mktemp "${MC_TMPDIR:-/tmp}/mail.XXXXXX"` || exit 1
40 test -r "$I" && mail root < "$I"
43 =+ f \.1$ | f \.3$ | f \.4$ | f \.5$ | f \.6$ | f \.7$ | f \.8$ | f \.man$ & t r
44 1 Display the file with roff -man
45 %view{ascii,nroff} roff @MAN_FLAGS@ @MANDOC@ %f
47 2 Call the info hypertext browser
51 3 Compress the current subdirectory (tar.gz)
53 echo -n "Name of the compressed file (without extension) [$Pwd]: "
55 [ "$tar"x = x ] && tar="$Pwd"
57 tar cf - "$Pwd" | gzip -f9 > "$tar.tar.gz" && \
58 echo "../$tar.tar.gz created."
60 4 Compress the current subdirectory (tar.bz2)
62 echo -n "Name of the compressed file (without extension) [$Pwd]: "
64 [ "$tar"x = x ] && tar="$Pwd"
66 tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \
67 echo "../$tar.tar.bz2 created."
69 5 Compress the current subdirectory (tar.7z)
71 echo -n "Name of the compressed file (without extension) [$Pwd]: "
73 [ "$tar"x = x ] && tar="$Pwd"
75 tar cf - "$Pwd" | 7za a -si "$tar.tar.7z" && \
76 echo "../$tar.tar.7z created."
78 6 Compress the current subdirectory (tar.xz)
80 echo -n "Name of the compressed file (without extension) [$Pwd]: "
82 [ "$tar"x = x ] && tar="$Pwd"
84 tar cf - "$Pwd" | xz -f > "$tar.tar.xz" && \
85 echo "../$tar.tar.xz created."
88 + f \.c$ & t r & ! t t
89 c Compile and link current .c file
90 make "`basename %f .c`" 2>/dev/null || cc -O -o "`basename %f .c`" %f
93 a Append file to opposite
97 A Append files to opposite files
103 d Delete file if a copy exists in the other directory.
105 echo "The two directories must be different."
108 if [ -f %D/%f ]; then # if two of them, then
109 if cmp -s %D/%f %f; then
110 rm %f && echo %f": DELETED."
112 echo %f" and "%D/%f" differ: NOT deleted."
113 echo -n "Press RETURN "
117 echo %f": No copy in "%D/%f": NOT deleted."
121 D Delete tagged files if a copy exists in the other directory.
123 echo "The two directores must be different."
127 if [ -f %D/"$i" ]; then
130 if [ "$SUM1" = "$SUM2" ]; then
131 rm "$i" && echo "${i}: DELETED."
133 echo "$i and "%D"/$i differ: NOT deleted."
136 echo "$i has no copy in "%D": NOT deleted."
141 MAN=%{Enter manual name}
142 %view{ascii,nroff} MANROFFOPT='@MAN_FLAGS@' MAN_KEEP_FORMATTING=1 man -P cat "$MAN"
146 n Inspect gzip'ed newsbatch file
147 dd if=%f bs=1 skip=12 | zcat | ${PAGER-more}
148 # assuming the cunbatch header is 12 bytes long.
152 h Strip headers from current newsarticle
153 CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
156 I=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
157 cp %f "$I" && sed '/^'"$CHECK"' /,/^$/d' "$I" > %f
158 [ "$?" = "0" ] && rm "$I"
159 echo %f": header removed."
162 echo %f" is not a news article."
167 H Strip headers from the marked newsarticles
169 CHECK=`awk '{print $1 ; exit}' "$i"` 2>/dev/null
170 WFILE=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
173 cp "$i" "$WFILE" && sed '/^'"$CHECK"' /,/^$/d' "$WFILE" > "$i"
174 if [ "$?" = "0" ]; then
175 rm "$WFILE"; echo "$i header removed. OK."
177 echo "Oops! Please check $i against $WFILE."
181 echo "$i skipped: Not a news article."
188 r Copy file to remote host
189 echo -n "To which host?: "
191 echo -n "To which directory on $Host?: "
193 rcp -p %f "${Host}:${Dir}"
196 R Copy files to remote host (no error checking)
197 echo -n "Copy files to which host?: "
199 echo -n "To which directory on $Host? :"
201 rcp -pr %u "${Host}:${Dir}"
204 + f \.tex$ & t r & ! t t
205 t Run latex on file and show it with xdvi
206 latex %f && xdvi "`basename %f .tex`".dvi
208 =+ f ^part | f ^Part | f uue & t r
210 U Uudecode marked news articles (needs work)
212 for i in %t ; do # strip headers
213 FIRST=`awk '{print $1 ; exit}' "$i"`
214 cat "$i" | sed '/^'"$FIRST"' /,/^$/d'
216 ) | sed '/^$/d' | sed -n '/^begin 6/,/^end$/p' | uudecode
217 if [ "$?" != "0" ]; then
218 echo "Cannot decode "%t"."
220 echo "Please test the output file before deleting anything."
222 =+ f \.tar\.gz$ | f \.tar\.z$ | f \.tgz$ | f \.tpz$ | f \.tar\.lz$ | f \.tar\.lz4$ | f \.tar\.lzma$ | f \.tar\.7z$ | f \.tar\.xz$ | f \.tar\.Z$ | f \.tar\.bz2$ & t r
223 x Extract the contents of a compressed tar file
226 *.tar.7z) PRG="7za e -so";;
227 *.tar.bz2) PRG="bunzip2 -c";;
228 *.tar.gz|*.tar.z|*.tgz|*.tpz|*.tar.Z) PRG="gzip -dc";;
229 *.tar.lz) PRG="lzip -dc";;
230 *.tar.lz4) PRG="lz4 -dc";;
231 *.tar.lzma) PRG="lzma -dc";;
232 *.tar.xz) PRG="xz -dc";;
239 y Gzip or gunzip current file
242 *.gz|*.[zZ]) DECOMP=-d;;
247 Y Gzip or gunzip tagged files
251 *.gz|*.[zZ]) DECOMP=-d;;
253 gzip "$DECOMP" -v "$i"
257 b Bzip2 or bunzip2 current file
262 bzip2 "$DECOMP" -v %f
265 B Bzip2 or bunzip2 tagged files
271 bzip2 "$DECOMP" -v "$i"
274 + f \.tar.gz$ | f \.tgz$ | f \.tpz$ | f \.tar.Z$ | f \.tar.z$ | f \.tar.bz2$ | f \.tar.F$ & t r & ! t t
275 z Extract compressed tar file to subdirectory
279 *.tar.F) D=`basename %f .tar.F`; set freeze -dc;;
280 *.tar.Z) D=`basename %f .tar.Z`;;
281 *.tar.bz2) D=`basename %f .tar.bz2`; set bunzip2 -c;;
282 *.tar.gz) D=`basename %f .tar.gz`;;
283 *.tar.z) D=`basename %f .tar.z`;;
284 *.tgz) D=`basename %f .tgz`;;
285 *.tpz) D=`basename %f .tpz`;;
287 mkdir "$D"; cd "$D" && ("$1" "$2" ../%f | tar xvf -)
290 Z Extract compressed tar files to subdirectories
295 *.tar.F) D=`basename "$i" .tar.F`; set freeze -dc;;
296 *.tar.Z) D=`basename "$i" .tar.Z`;;
297 *.tar.bz2) D=`basename "$i" .tar.bz2`; set bunzip2 -c;;
298 *.tar.gz) D=`basename "$i" .tar.gz`;;
299 *.tar.z) D=`basename "$i" .tar.z`;;
300 *.tgz) D=`basename "$i" .tgz`;;
301 *.tpz) D=`basename "$i" .tpz`;;
303 mkdir "$D"; (cd "$D" && "$1" "$2" "../$i" | tar xvf -)
306 + f \.gz$ | f \.tgz$ | f \.tpz$ | f \.Z$ | f \.z$ | f \.bz2$ & t r & ! t t
307 c Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
319 bz2|Z|gz|z) D=`basename %f ."$EXT"`;;
320 tgz|tpz) D=`basename %f ."$EXT"`.tar;;
322 if [ "$EXT" = "bz2" ]; then
331 C Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
344 bz2|Z|gz|z) D=`basename "$i" ."$EXT"`;;
345 tgz|tpz) D=`basename "$i" ."$EXT"`.tar;;
347 if [ "$EXT" = "bz2" ]; then
356 + x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
357 o Open next a free console