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."
87 7 Compress the current subdirectory (tar.zst)
89 echo -n "Name of the compressed file (without extension) [$Pwd]: "
91 [ "$tar"x = x ] && tar="$Pwd"
93 tar cf - "$Pwd" | zstd -f > "$tar.tar.zst" && \
94 echo "../$tar.tar.zst created."
96 8 Compress the current subdirectory (tar.lzo)
98 echo -n "Name of the compressed file (without extension) [$Pwd]: "
100 [ "$tar"x = x ] && tar="$Pwd"
102 tar cf - "$Pwd" | lzop -f > "$tar.tar.lzo" && \
103 echo "../$tar.tar.lzo created."
106 + f \.c$ & t r & ! t t
107 c Compile and link current .c file
108 make "`basename %f .c`" 2>/dev/null || cc -O -o "`basename %f .c`" %f
111 a Append file to opposite
115 A Append files to opposite files
121 d Delete file if a copy exists in the other directory.
123 echo "The two directories must be different."
126 if [ -f %D/%f ]; then # if two of them, then
127 if cmp -s %D/%f %f; then
128 rm %f && echo %f": DELETED."
130 echo %f" and "%D/%f" differ: NOT deleted."
131 echo -n "Press RETURN "
135 echo %f": No copy in "%D/%f": NOT deleted."
139 D Delete tagged files if a copy exists in the other directory.
141 echo "The two directories must be different."
145 if [ -f %D/"$i" ]; then
148 if [ "$SUM1" = "$SUM2" ]; then
149 rm "$i" && echo "${i}: DELETED."
151 echo "$i and "%D"/$i differ: NOT deleted."
154 echo "$i has no copy in "%D": NOT deleted."
159 MAN=%{Enter manual name}
160 %view{ascii,nroff} MANROFFOPT='@MAN_FLAGS@' MAN_KEEP_FORMATTING=1 man -P cat "$MAN"
164 n Inspect gzip'ed newsbatch file
165 dd if=%f bs=1 skip=12 | zcat | ${PAGER-more}
166 # assuming the cunbatch header is 12 bytes long.
170 h Strip headers from current newsarticle
171 CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
174 I=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
175 cp %f "$I" && sed '/^'"$CHECK"' /,/^$/d' "$I" > %f
176 [ "$?" = "0" ] && rm "$I"
177 echo %f": header removed."
180 echo %f" is not a news article."
185 H Strip headers from the marked newsarticles
187 CHECK=`awk '{print $1 ; exit}' "$i"` 2>/dev/null
188 WFILE=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
191 cp "$i" "$WFILE" && sed '/^'"$CHECK"' /,/^$/d' "$WFILE" > "$i"
192 if [ "$?" = "0" ]; then
193 rm "$WFILE"; echo "$i header removed. OK."
195 echo "Oops! Please check $i against $WFILE."
199 echo "$i skipped: Not a news article."
206 r Copy file to remote host
207 echo -n "To which host?: "
209 echo -n "To which directory on $Host?: "
211 rcp -p %f "${Host}:${Dir}"
214 R Copy files to remote host (no error checking)
215 echo -n "Copy files to which host?: "
217 echo -n "To which directory on $Host? :"
219 rcp -pr %u "${Host}:${Dir}"
222 + f \.tex$ & t r & ! t t
223 t Run latex on file and show it with xdvi
224 latex %f && xdvi "`basename %f .tex`".dvi
226 =+ f ^part | f ^Part | f uue & t r
228 U Uudecode marked news articles (needs work)
230 for i in %t ; do # strip headers
231 FIRST=`awk '{print $1 ; exit}' "$i"`
232 cat "$i" | sed '/^'"$FIRST"' /,/^$/d'
234 ) | sed '/^$/d' | sed -n '/^begin 6/,/^end$/p' | uudecode
235 if [ "$?" != "0" ]; then
236 echo "Cannot decode "%t"."
238 echo "Please test the output file before deleting anything."
240 =+ f \.tar\.gz$ | f \.tar\.z$ | f \.tgz$ | f \.tpz$ | f \.tar\.lz$ | f \.tar\.lz4$ | f \.tar\.lzma$ | f \.tar\.lzo$ | f \.tar\.7z$ | f \.tar\.xz$ | f \.tar\.zst | f \.tar\.Z$ | f \.tar\.bz2$ & t rl
241 x Extract the contents of a compressed tar file
244 *.tar.7z) PRG="7za e -so";;
245 *.tar.bz2) PRG="bunzip2 -c";;
246 *.tar.gz|*.tar.z|*.tgz|*.tpz|*.tar.Z) PRG="gzip -dc";;
247 *.tar.lz) PRG="lzip -dc";;
248 *.tar.lz4) PRG="lz4 -dc";;
249 *.tar.lzma) PRG="lzma -dc";;
250 *.tar.lzo) PRG="lzop -dc";;
251 *.tar.xz) PRG="xz -dc";;
252 *.tar.zst) PRG="zstd -dc";;
259 y Gzip or gunzip current file
262 *.gz|*.[zZ]) DECOMP=-d;;
264 # Do *not* add quotes around $DECOMP!
268 Y Gzip or gunzip tagged files
272 *.gz|*.[zZ]) DECOMP=-d;;
278 b Bzip2 or bunzip2 current file
286 B Bzip2 or bunzip2 tagged files
292 bzip2 $DECOMP -v "$i"
295 + f \.tar.gz$ | f \.tgz$ | f \.tpz$ | f \.tar.Z$ | f \.tar.z$ | f \.tar.bz2$ | f \.tar.F$ & t r & ! t t
296 z Extract compressed tar file to subdirectory
300 *.tar.F) D=`basename %f .tar.F`; set freeze -dc;;
301 *.tar.Z) D=`basename %f .tar.Z`;;
302 *.tar.bz2) D=`basename %f .tar.bz2`; set bunzip2 -c;;
303 *.tar.gz) D=`basename %f .tar.gz`;;
304 *.tar.z) D=`basename %f .tar.z`;;
305 *.tgz) D=`basename %f .tgz`;;
306 *.tpz) D=`basename %f .tpz`;;
308 mkdir "$D"; cd "$D" && ("$1" "$2" ../%f | tar xvf -)
311 Z Extract compressed tar files to subdirectories
316 *.tar.F) D=`basename "$i" .tar.F`; set freeze -dc;;
317 *.tar.Z) D=`basename "$i" .tar.Z`;;
318 *.tar.bz2) D=`basename "$i" .tar.bz2`; set bunzip2 -c;;
319 *.tar.gz) D=`basename "$i" .tar.gz`;;
320 *.tar.z) D=`basename "$i" .tar.z`;;
321 *.tgz) D=`basename "$i" .tgz`;;
322 *.tpz) D=`basename "$i" .tpz`;;
324 mkdir "$D"; (cd "$D" && "$1" "$2" "../$i" | tar xvf -)
327 + f \.gz$ | f \.tgz$ | f \.tpz$ | f \.Z$ | f \.z$ | f \.bz2$ & t r & ! t t
328 c Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
340 bz2|Z|gz|z) D=`basename %f ."$EXT"`;;
341 tgz|tpz) D=`basename %f ."$EXT"`.tar;;
343 if [ "$EXT" = "bz2" ]; then
352 C Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
365 bz2|Z|gz|z) D=`basename "$i" ."$EXT"`;;
366 tgz|tpz) D=`basename "$i" ."$EXT"`.tar;;
368 if [ "$EXT" = "bz2" ]; then
377 + x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
378 o Open next a free console