3 @ Do something on the current file
8 @ Do something on the tagged files
9 set %t; CMD=%{Enter command}
16 0 Edit a bug report and send it to root
17 I=`mktemp ${MC_TMPDIR:-/tmp}/mail.XXXXXX` || exit 1
19 test -r $I && mail root < $I
22 =+ f \.1$ | f \.3$ | f \.4$ | f \.5$ | f \.6$ | f \.7$ | f \.8$ | f \.man$ & t r
23 1 Display the file with roff -man
26 2 Call the info hypertext browser
30 3 Compress the current subdirectory (tar.gz)
32 echo -n "Name of the compressed file (without extension) [$Pwd]: "
34 if [ "$tar"x = x ]; then tar="$Pwd"; fi
36 tar cf - "$Pwd" | gzip -f9 > "$tar.tar.gz" && \
37 echo "../$tar.tar.gz created."
39 4 Compress the current subdirectory (tar.bz2)
41 echo -n "Name of the compressed file (without extension) [$Pwd]: "
43 if [ "$tar"x = x ]; then tar="$Pwd"; fi
45 tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \
46 echo "../$tar.tar.bz2 created."
48 5 Compress the current subdirectory (tar.p7)
50 echo -n "Name of the compressed file (without extension) [$Pwd]: "
52 if [ "$tar"x = x ]; then tar="$Pwd"; fi
54 tar cf - "$Pwd" | 7za a -si "$tar.tar.7z" && \
55 echo "../$tar.tar.7z created."
57 6 Compress the current subdirectory (tar.lzma)
59 echo -n "Name of the compressed file (without extension) [$Pwd]: "
61 if [ "$tar"x = x ]; then tar="$Pwd"; fi
63 tar cf - "$Pwd" | lzma -f > "$tar.tar.lzma" && \
64 echo "../$tar.tar.lzma created."
66 7 Compress the current subdirectory (tar.lz)
68 echo -n "Name of the compressed file (without extension) [$Pwd]: "
70 if [ "$tar"x = x ]; then tar="$Pwd"; fi
72 tar cf - "$Pwd" | lzip -f > "$tar.tar.lz" && \
73 echo "../$tar.tar.lz created."
75 8 Compress the current subdirectory (tar.xz)
77 echo -n "Name of the compressed file (without extension) [$Pwd]: "
79 if [ "$tar"x = x ]; then tar="$Pwd"; fi
81 tar cf - "$Pwd" | xz -f > "$tar.tar.xz" && \
82 echo "../$tar.tar.xz created."
84 + f \.c$ & t r & ! t t
85 Compile and link current .c file
86 make `basename %f .c` 2>/dev/null || cc -O -o `basename %f .c` %f
89 a Append file to opposite
93 A Append files to opposite files
101 d Delete file if a copy exists in the other directory.
102 if [ "%d" = "%D" ]; then
103 echo "The two directores must be different"
106 if [ -f %D/%f ]; then # if two of them, then
107 if cmp -s %D/%f %f; then
108 rm %f && echo %f: DELETED
110 echo "%f and %D/%f differ: NOT deleted"
111 echo -n "Press RETURN "
115 echo %f: No copy in %D/%f: NOT deleted.
119 D Delete tagged files if a copy exists in the other directory.
120 if [ "%d" = "%D" ]; then
121 echo "The two directores must be different"
126 if [ -f %D/$i ]; then
129 if [ "$SUM1" = "$SUM2" ]; then
130 rm $i && echo ${i}: DELETED
132 echo $i and %D/$i differ: NOT deleted.
135 echo %f has no copy in %D/%f: NOT deleted.
140 MAN=%{Enter manual name}
141 %view man -P cat $MAN
145 n Inspect gzip'ed newsbatch file
146 dd if=%f bs=1 skip=12|zcat|${PAGER-more}
147 # assuming the cunbatch header is 12 bytes long.
151 h Strip headers from current newsarticle
152 CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
155 I=`mktemp ${MC_TMPDIR:-/tmp}/news.XXXXXX` || exit 1
156 cp %f $I && sed '/^'"$CHECK"' /,/^$/d' $I > %f
157 [ "$?" = "0" ] && rm $I
158 echo %f: header removed
161 echo %f is not a news article.
166 H Strip headers from the marked newsarticles
168 while [ -n "$1" ]; do
169 CHECK=`awk '{print $1 ; exit}' $1` 2>/dev/null
170 WFILE=`mktemp ${MC_TMPDIR:-/tmp}/news.XXXXXX` || exit 1
173 cp $1 $WFILE && sed '/^'"$CHECK"' /,/^$/d' $WFILE > $1
174 if [ "$?" = "0" ]; then
175 rm $WFILE; echo $1 header removed. OK.
177 echo "Oops! Please check $1 against $WFILE"
181 echo $1 skipped: Not a news article.
189 r Copy file to remote host
190 echo -n "To which host?: "
192 echo -n "To which directory on $Host?: "
194 rcp -p %f ${Host}:$Dir
197 R Copy files to remote host (no error checking)
198 echo -n "Copy files to which host?: "
200 echo -n "To which directory on $Host? :"
202 rcp -pr %u ${Host}:$Dir
205 + f \.tex$ & t r & ! t t
206 t Run latex on file and show it with xdvi
207 latex %f && xdvi `basename %f .tex`.dvi
209 =+ f ^part | f ^Part | f uue & t r
211 U Uudecode marked news articles (needs work)
214 while [ -n "$1" ]; do # strip headers
215 FIRST=`awk '{print $1 ; exit}' $1`
216 cat $1 | sed '/^'"$FIRST"' /,/^$/d'; shift
218 ) |sed '/^$/d' |sed -n '/^begin 6/,/^end$/p' | uudecode
219 if [ "$?" != "0" ]; then
220 echo "Cannot decode %t"
222 echo "Please test the output file before deleting anything"
224 =+ f \.tar\.gz$ | f \.tar\.z$ | f \.tgz$ | f \.tpz$ | f \.tar\.lz$ | f \.tar\.lzma$ | f \.tar\.lz$ | f \.tar\.7z$ | f \.tar\.xz$ | f \.tar\.Z$| f \.tar\.bz2$ & t r
225 x Extract the contents of a compressed tar file
231 *.tar.gz|*.tar.z|*.tgz|*.tpz|*.tar.Z)
254 y Gzip or gunzip current file
263 Y Gzip or gunzip tagged files
275 b Bzip2 or bunzip2 current file
283 B Bzip2 or bunzip2 tagged files
293 + f \.tar.gz$ | f \.tgz$ | f \.tpz$ | f \.tar.Z$ | f \.tar.z$ | f \.tar.bz2$ | f \.tar.F$ & t r & ! t t
294 z Extract compressed tar file to subdirectory
298 *.tar.gz) D="`basename %f .tar.gz`";;
299 *.tgz) D="`basename %f .tgz`";;
300 *.tpz) D="`basename %f .tpz`";;
301 *.tar.Z) D="`basename %f .tar.Z`";;
302 *.tar.z) D="`basename %f .tar.z`";;
303 *.tar.bz2) D="`basename %f .tar.bz2`"; set bunzip2 -c ;;
304 *.tar.F) D="`basename %f .tar.F`"; set freeze -dc;
306 mkdir $D; cd $D && ($1 $2 ../%f | tar xvf -)
309 Z Extract compressed tar files to subdirectories
315 *.tar.gz) D="`basename $i .tar.gz`";;
316 *.tgz) D="`basename $i .tgz`";;
317 *.tpz) D="`basename $i .tpz`";;
318 *.tar.Z) D="`basename $i .tar.Z`";;
319 *.tar.z) D="`basename $i .tar.z`";;
320 *.tar.F) D="`basename $i .tar.F`"; set freeze -dc;;
321 *.tar.bz2) D="`basename $i .tar.bz2`"; set bunzip2 -c;;
323 mkdir $D; (cd $D && $1 $2 ../$i | tar xvf -)
326 + f \.gz$ | f \.tgz$ | f \.tpz$ | f \.Z$ | f \.z$ | f \.bz2$ & t r & ! t t
327 c Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
339 tgz|tpz) D="`basename %f .$EXT`.tar";;
340 gz|Z|z) D="`basename %f .$EXT`";;
341 bz2) D="`basename %f .bz2`";;
343 if [ "$EXT" = "bz2" ]; then
344 bunzip2 -v %f ; gzip -f9 -v $D
346 gunzip -v %f ; bzip2 -v $D
350 C Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
365 tgz) D="`basename $1 .tgz`.tar";;
366 tpz) D="`basename $1 .tpz`.tar";;
367 gz|Z|z) D="`basename $1 .$EXT`";;
368 bz2) D="`basename $1 .bz2`";;
370 if [ "$EXT" = "bz2" ]; then
380 + x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
381 o Open next a free console