Updated doc/NEWS file
[midnight-commander.git] / misc / mc.menu
blob58daeebf67c1ed23b3d5be9fa110de22d32fd1a2
1 shell_patterns=0
2 + ! t t
3 @       Do something on the current file
4         CMD=%{Enter command}
5         $CMD %f
7 + t t
8 @       Do something on the tagged files
9         set %t; CMD=%{Enter command}
10         while [ -n "$1" ]; do
11           $CMD "$1"
12           shift
13         done
14         
16 0       Edit a bug report and send it to root
17         I=`mktemp "${MC_TMPDIR:-/tmp}/mail.XXXXXX"` || exit 1
18         ${EDITOR-vi} "$I"
19         test -r $I && mail root < $I
20         rm -f "$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
24         nroff -man %f | less
26 2       Call the info hypertext browser
27         info
29 = t d
30 3       Compress the current subdirectory (tar.gz)
31         Pwd=`basename %d /`
32         echo -n "Name of the compressed file (without extension) [$Pwd]: "
33         read tar
34         if [ "$tar"x = x ]; then tar="$Pwd"; fi
35         cd .. && \
36         tar cf - "$Pwd" | gzip -f9 > "$tar.tar.gz" && \
37         echo "../$tar.tar.gz created."
39 4       Compress the current subdirectory (tar.bz2)
40         Pwd=`basename %d /`
41         echo -n "Name of the compressed file (without extension) [$Pwd]: "
42         read tar
43         if [ "$tar"x = x ]; then tar="$Pwd"; fi
44         cd .. && \
45         tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \
46         echo "../$tar.tar.bz2 created."
48 5       Compress the current subdirectory (tar.7z)
49         Pwd=`basename %d /`
50         echo -n "Name of the compressed file (without extension) [$Pwd]: "
51         read tar
52         if [ "$tar"x = x ]; then tar="$Pwd"; fi
53         cd .. && \
54         tar cf - "$Pwd" | 7za a -si "$tar.tar.7z" && \
55         echo "../$tar.tar.7z created."
57 6       Compress the current subdirectory (tar.xz)
58         Pwd=`basename %d /`
59         echo -n "Name of the compressed file (without extension) [$Pwd]: "
60         read tar
61         if [ "$tar"x = x ]; then tar="$Pwd"; fi
62         cd .. && \
63         tar cf - "$Pwd" | xz -f > "$tar.tar.xz" && \
64         echo "../$tar.tar.xz created."
66 = f \.c$ & t r
67 + f \.c$ & t r & ! t t
68 с       Compile and link current .c file
69         make `basename %f .c` 2>/dev/null || cc -O -o `basename %f .c` %f
71 + t r & ! t t
72 a       Append file to opposite
73         cat %f >> %D/%f
75 + t t
76 A       Append files to opposite files
77         set %t
78         while [ -n "$1" ]; do
79           cat "$1" >> "%D/$1"
80           shift
81         done
83 + t r & ! t t
84 d       Delete file if a copy exists in the other directory.
85         if [ "%d" = "%D" ]; then
86           echo "The two directories must be different."
87           exit 1
88         fi
89         if [ -f %D/%f ]; then        # if two of them, then
90           if cmp -s %D/%f %f; then
91             rm %f && echo "%f: DELETED."
92           else
93             echo "%f and %D/%f differ: NOT deleted."
94             echo -n "Press RETURN "
95             read key
96           fi
97         else
98           echo "%f: No copy in %D/%f: NOT deleted."
99         fi
101 + t t
102 D       Delete tagged files if a copy exists in the other directory.
103         if [ "%d" = "%D" ]; then
104           echo "The two directores must be different."
105           exit 1
106         fi
107         for i in %t
108         do
109           if [ -f "%D/$i" ]; then
110             SUM1="`sum $i`"
111             SUM2="`sum %D/$i`"
112             if [ "$SUM1" = "$SUM2" ]; then
113               rm "$i" && echo "${i}: DELETED."
114             else
115               echo "$i and %D/$i differ: NOT deleted."
116             fi
117           else
118             echo "%i has no copy in %D: NOT deleted."
119           fi
120         done
122 m       View manual page
123         MAN=%{Enter manual name}
124         %view man -P cat $MAN
126 = f \.gz$ & t r
127 + ! t t
128 n       Inspect gzip'ed newsbatch file
129         dd if=%f bs=1 skip=12|zcat|${PAGER-more}
130         # assuming the cunbatch header is 12 bytes long.
132 = t r &
133 + ! t t
134 h       Strip headers from current newsarticle
135         CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
136         case "$CHECK" in
137           Newsgroups:|Path:)
138               I=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
139               cp %f "$I" && sed '/^'"$CHECK"' /,/^$/d' "$I" > %f
140               [ "$?" = "0" ] && rm "$I"
141               echo "%f: header removed."
142                 ;;
143           *)
144               echo "%f is not a news article."
145                 ;;
146         esac
148 + t t
149 H       Strip headers from the marked newsarticles
150         set %t
151         while [ -n "$1" ]; do
152           CHECK=`awk '{print $1 ; exit}' $1` 2>/dev/null
153           WFILE=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
154           case "$CHECK" in
155             Newsgroups:|Path:)
156               cp "$1" "$WFILE" && sed '/^'"$CHECK"' /,/^$/d' "$WFILE" > "$1"
157               if [ "$?" = "0" ]; then
158                 rm "$WFILE"; echo "$1 header removed. OK."
159               else
160                 echo "Oops! Please check $1 against $WFILE."
161               fi
162                 ;;
163             *)
164               echo "$1 skipped: Not a news article."
165                 ;;
166           esac
167           shift
168         done
170 = t r
171 + ! t t
172 r       Copy file to remote host
173         echo -n "To which host?: "
174         read Host
175         echo -n "To which directory on $Host?: "
176         read Dir
177         rcp -p %f "${Host}:$Dir"
179 + t t
180 R       Copy files to remote host (no error checking)
181         echo -n "Copy files to which host?: "
182         read Host
183         echo -n "To which directory on $Host? :"
184         read Dir
185         rcp -pr %u "${Host}:$Dir"
187 = f \.tex$ & t r
188 + f \.tex$ & t r & ! t t
189 t       Run latex on file and show it with xdvi
190         latex %f && xdvi `basename %f .tex`.dvi
192 =+ f ^part | f ^Part | f uue & t r
193 + t t
194 U       Uudecode marked news articles (needs work)
195         set %t
196         (
197         while [ -n "$1" ]; do # strip headers
198           FIRST=`awk '{print $1 ; exit}' "$1"`
199           cat "$1" | sed '/^'"$FIRST"' /,/^$/d'; shift
200         done
201         ) |sed '/^$/d' |sed -n '/^begin 6/,/^end$/p' | uudecode
202         if [ "$?" != "0" ]; then
203           echo "Cannot decode %t."
204         fi
205         echo "Please test the output file before deleting anything."
207 =+ f \.tar\.gz$ | f \.tar\.z$ | f \.tgz$ | f \.tpz$ | f \.tar\.lz$ | f \.tar\.lzma$ | f \.tar\.7z$ | f \.tar\.xz$ | f \.tar\.Z$ | f \.tar\.bz2$ & t r
208 x       Extract the contents of a compressed tar file
209         unset PRG
210         case %f in
211             *.tar.bz2)
212                 PRG="bunzip2 -c"
213                 ;;
214             *.tar.gz|*.tar.z|*.tgz|*.tpz|*.tar.Z)
215                 PRG="gzip -dc"
216                 ;;
217             *.tar.lzma)
218                 PRG="lzma -dc"
219                 ;;
220             *.tar.lz)
221                 PRG="lzip -dc"
222                 ;;
223             *.tar.xz)
224                 PRG="xz -dc"
225                 ;;
226             *.tar.7z)
227                 PRG="7za e -so"
228                 ;;
229             *)
230                 exit 1
231                 ;;
232         esac
233         $PRG %f | tar xvf -
235 = t r
236 + ! t t
237 y       Gzip or gunzip current file
238         unset DECOMP
239         case %f in
240             *.gz) DECOMP=-d;;
241             *.[zZ]) DECOMP=-d;;
242         esac
243         gzip $DECOMP -v %f
245 + t t
246 Y       Gzip or gunzip tagged files
247         for i in %t
248         do
249           unset DECOMP
250           case "$i" in
251             *.gz) DECOMP=-d;;
252             *.[zZ]) DECOMP=-d;;
253           esac
254           gzip $DECOMP -v "$i"
255         done
257 + ! t t
258 b       Bzip2 or bunzip2 current file
259         unset DECOMP
260         case %f in
261             *.bz2) DECOMP=-d;;
262         esac
263         bzip2 $DECOMP -v %f
265 + t t
266 B       Bzip2 or bunzip2 tagged files
267         for i in %t
268         do
269           unset DECOMP
270           case "$i" in
271             *.bz2) DECOMP=-d;;
272           esac
273           bzip2 $DECOMP -v "$i"
274         done
276 + f \.tar.gz$ | f \.tgz$ | f \.tpz$ | f \.tar.Z$ | f \.tar.z$ | f \.tar.bz2$ | f \.tar.F$ & t r & ! t t
277 z       Extract compressed tar file to subdirectory
278         unset D
279         set gzip -cd
280         case %f in
281           *.tar.gz) D="`basename %f .tar.gz`";;
282           *.tgz)    D="`basename %f .tgz`";;
283           *.tpz)    D="`basename %f .tpz`";;
284           *.tar.Z)  D="`basename %f .tar.Z`";;
285           *.tar.z)  D="`basename %f .tar.z`";;
286           *.tar.bz2) D="`basename %f .tar.bz2`"; set bunzip2 -c ;;
287           *.tar.F) D="`basename %f .tar.F`"; set freeze -dc;
288         esac
289         mkdir "$D"; cd "$D" && ("$1" "$2" ../%f | tar xvf -)
291 + t t
292 Z       Extract compressed tar files to subdirectories
293         for i in %t
294         do
295           set gzip -dc
296           unset D
297           case "$i" in
298             *.tar.gz)  D="`basename $i .tar.gz`";;
299             *.tgz)     D="`basename $i .tgz`";;
300             *.tpz)     D="`basename $i .tpz`";;
301             *.tar.Z)   D="`basename $i .tar.Z`";;
302             *.tar.z)   D="`basename $i .tar.z`";;
303             *.tar.F)   D="`basename $i .tar.F`"; set freeze -dc;;
304             *.tar.bz2) D="`basename $i .tar.bz2`"; set bunzip2 -c;;
305           esac
306           mkdir "$D"; (cd "$D" && "$1" "$2" "../$i" | tar xvf -)
307         done
309 + f \.gz$ | f \.tgz$ | f \.tpz$ | f \.Z$ | f \.z$ | f \.bz2$ & t r & ! t t
310 c       Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
311         unset D
312         unset EXT
313         case %f in
314             *.tgz)      EXT=tgz;;
315             *.tpz)      EXT=tpz;;
316             *.Z)        EXT=Z;;
317             *.z)        EXT=z;;
318             *.gz)       EXT=gz;;
319             *.bz2)      EXT=bz2;;
320         esac
321         case $EXT in
322           tgz|tpz)      D="`basename %f .$EXT`.tar";;
323           gz|Z|z)       D="`basename %f .$EXT`";;
324           bz2)          D="`basename %f .bz2`";;
325         esac
326         if [ "$EXT" = "bz2" ]; then
327             bunzip2 -v %f ; gzip -f9 -v "$D"
328         else
329             gunzip -v %f ; bzip2 -v "$D"
330         fi
332 + t t
333 C       Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
334         set %t
335         while [ -n "$1" ]
336         do
337           unset D
338           unset EXT
339           case "$1" in
340             *.tgz)      EXT=tgz;;
341             *.tpz)      EXT=tpz;;
342             *.Z)        EXT=Z;;
343             *.z)        EXT=z;;
344             *.gz)       EXT=gz;;
345             *.bz2)      EXT=bz2;;
346           esac
347           case $EXT in
348               tgz)    D="`basename $1 .tgz`.tar";;
349               tpz)    D="`basename $1 .tpz`.tar";;
350               gz|Z|z) D="`basename $1 .$EXT`";;
351               bz2)    D="`basename $1 .bz2`";;
352           esac
353           if [ "$EXT" = "bz2" ]; then
354             bunzip2 -v "$1"
355             gzip -f9 -v "$D"
356           else
357             gunzip -v "$1"
358             bzip2 -v "$D"
359           fi
360           shift
361         done
363 + x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
364 o       Open next a free console
365         open -s -- sh