WListbox: use the new mouse API.
[midnight-commander.git] / misc / mc.menu.in
blobcf42421ae3f197a2025b5dba924dd25491de4f3f
1 shell_patterns=0
3 ##############################################################################
4 #   %%  The % character
5 #   %f  The current file (if non-local vfs, file will be copied locally and
6 #                         %f will be full path to it)
7 #   %p  The current file
8 #   %d  The current working directory
9 #   %s  "Selected files"; the tagged files if any, otherwise the current file
10 #   %t  Tagged files
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
21 #   %1f   ditto
22 #   %0f   don't quote expanded macro
23 ##############################################################################
25 + ! t t
26 @       Do something on the current file
27         CMD=%{Enter command}
28         $CMD %f
30 + t t
31 @       Do something on the tagged files
32         CMD=%{Enter command}
33         for i in %t ; do
34             $CMD "$i"
35         done
37 0       Edit a bug report and send it to root
38         I=`mktemp "${MC_TMPDIR:-/tmp}/mail.XXXXXX"` || exit 1
39         ${EDITOR-vi} "$I"
40         test -r "$I" && mail root < "$I"
41         rm -f "$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
48         info
50 = t d
51 3       Compress the current subdirectory (tar.gz)
52         Pwd=`basename %d /`
53         echo -n "Name of the compressed file (without extension) [$Pwd]: "
54         read tar
55         [ "$tar"x = x ] && tar="$Pwd"
56         cd .. && \
57         tar cf - "$Pwd" | gzip -f9 > "$tar.tar.gz" && \
58         echo "../$tar.tar.gz created."
60 4       Compress the current subdirectory (tar.bz2)
61         Pwd=`basename %d /`
62         echo -n "Name of the compressed file (without extension) [$Pwd]: "
63         read tar
64         [ "$tar"x = x ] && tar="$Pwd"
65         cd .. && \
66         tar cf - "$Pwd" | bzip2 -f > "$tar.tar.bz2" && \
67         echo "../$tar.tar.bz2 created."
69 5       Compress the current subdirectory (tar.7z)
70         Pwd=`basename %d /`
71         echo -n "Name of the compressed file (without extension) [$Pwd]: "
72         read tar
73         [ "$tar"x = x ] && tar="$Pwd"
74         cd .. && \
75         tar cf - "$Pwd" | 7za a -si "$tar.tar.7z" && \
76         echo "../$tar.tar.7z created."
78 6       Compress the current subdirectory (tar.xz)
79         Pwd=`basename %d /`
80         echo -n "Name of the compressed file (without extension) [$Pwd]: "
81         read tar
82         [ "$tar"x = x ] && tar="$Pwd"
83         cd .. && \
84         tar cf - "$Pwd" | xz -f > "$tar.tar.xz" && \
85         echo "../$tar.tar.xz created."
87 = f \.c$ & t r
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
92 + t r & ! t t
93 a       Append file to opposite
94         cat %f >> %D/%f
96 + t t
97 A       Append files to opposite files
98         for i in %t ; do
99             cat "$i" >> %D/"$i"
100         done
102 + t r & ! t t
103 d       Delete file if a copy exists in the other directory.
104         if [ %d = %D ]; then
105             echo "The two directories must be different."
106             exit 1
107         fi
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."
111             else
112                 echo %f" and "%D/%f" differ: NOT deleted."
113                 echo -n "Press RETURN "
114                 read key
115             fi
116         else
117             echo %f": No copy in "%D/%f": NOT deleted."
118         fi
120 + t t
121 D       Delete tagged files if a copy exists in the other directory.
122         if [ %d = %D ]; then
123             echo "The two directores must be different."
124             exit 1
125         fi
126         for i in %t ; do
127             if [ -f %D/"$i" ]; then
128                 SUM1=`sum "$i"`
129                 SUM2=`sum %D/"$i"`
130                 if [ "$SUM1" = "$SUM2" ]; then
131                     rm "$i" && echo "${i}: DELETED."
132                 else
133                     echo "$i and "%D"/$i differ: NOT deleted."
134                 fi
135             else
136                 echo "$i has no copy in "%D": NOT deleted."
137             fi
138         done
140 m       View manual page
141         MAN=%{Enter manual name}
142         %view{ascii,nroff} MANROFFOPT='@MAN_FLAGS@' MAN_KEEP_FORMATTING=1 man -P cat "$MAN"
144 = f \.gz$ & t r
145 + ! t t
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.
150 = t r &
151 + ! t t
152 h       Strip headers from current newsarticle
153         CHECK=`awk '{print $1 ; exit}' %f` 2>/dev/null
154         case "$CHECK" in
155             Newsgroups:|Path:)
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."
160                 ;;
161             *)
162                 echo %f" is not a news article."
163                 ;;
164         esac
166 + t t
167 H       Strip headers from the marked newsarticles
168         for i in %t ; do
169             CHECK=`awk '{print $1 ; exit}' "$i"` 2>/dev/null
170             WFILE=`mktemp "${MC_TMPDIR:-/tmp}/news.XXXXXX"` || exit 1
171             case "$CHECK" in
172                 Newsgroups:|Path:)
173                     cp "$i" "$WFILE" && sed '/^'"$CHECK"' /,/^$/d' "$WFILE" > "$i"
174                     if [ "$?" = "0" ]; then
175                         rm "$WFILE"; echo "$i header removed. OK."
176                     else
177                         echo "Oops! Please check $i against $WFILE."
178                     fi
179                     ;;
180                 *)
181                     echo "$i skipped: Not a news article."
182                     ;;
183             esac
184         done
186 = t r
187 + ! t t
188 r       Copy file to remote host
189         echo -n "To which host?: "
190         read Host
191         echo -n "To which directory on $Host?: "
192         read Dir
193         rcp -p %f "${Host}:${Dir}"
195 + t t
196 R       Copy files to remote host (no error checking)
197         echo -n "Copy files to which host?: "
198         read Host
199         echo -n "To which directory on $Host? :"
200         read Dir
201         rcp -pr %u "${Host}:${Dir}"
203 = f \.tex$ & t r
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
209 + t t
210 U       Uudecode marked news articles (needs work)
211         (
212             for i in %t ; do # strip headers
213                 FIRST=`awk '{print $1 ; exit}' "$i"`
214                 cat "$i" | sed '/^'"$FIRST"' /,/^$/d'
215             done
216         ) | sed '/^$/d' | sed -n '/^begin 6/,/^end$/p' | uudecode
217         if [ "$?" != "0" ]; then
218             echo "Cannot decode "%t"."
219         fi
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
224         unset PRG
225         case %f in
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";;
233             *)          exit 1;;
234         esac
235         $PRG %f | tar xvf -
237 = t r
238 + ! t t
239 y       Gzip or gunzip current file
240         unset DECOMP
241         case %f in
242             *.gz|*.[zZ]) DECOMP=-d;;
243         esac
244         gzip "$DECOMP" -v %f
246 + t t
247 Y       Gzip or gunzip tagged files
248         for i in %t ; do
249             unset DECOMP
250             case "$i" in
251                 *.gz|*.[zZ]) DECOMP=-d;;
252             esac
253             gzip "$DECOMP" -v "$i"
254         done
256 + ! t t
257 b       Bzip2 or bunzip2 current file
258         unset DECOMP
259         case %f in
260             *.bz2) DECOMP=-d;;
261         esac
262         bzip2 "$DECOMP" -v %f
264 + t t
265 B       Bzip2 or bunzip2 tagged files
266         for i in %t ; do
267             unset DECOMP
268             case "$i" in
269                 *.bz2) DECOMP=-d;;
270             esac
271             bzip2 "$DECOMP" -v "$i"
272         done
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
276         unset D
277         set gzip -cd
278         case %f in
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`;;
286         esac
287         mkdir "$D"; cd "$D" && ("$1" "$2" ../%f | tar xvf -)
289 + t t
290 Z       Extract compressed tar files to subdirectories
291         for i in %t ; do
292             set gzip -dc
293             unset D
294             case "$i" in
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`;;
302           esac
303           mkdir "$D"; (cd "$D" && "$1" "$2" "../$i" | tar xvf -)
304         done
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
308         unset D
309         unset EXT
310         case %f in
311             *.Z)   EXT=Z;;
312             *.bz2) EXT=bz2;;
313             *.gz)  EXT=gz;;
314             *.tgz) EXT=tgz;;
315             *.tpz) EXT=tpz;;
316             *.z)   EXT=z;;
317         esac
318         case "$EXT" in
319             bz2|Z|gz|z) D=`basename %f ."$EXT"`;;
320             tgz|tpz)    D=`basename %f ."$EXT"`.tar;;
321         esac
322         if [ "$EXT" = "bz2" ]; then
323             bunzip2 -v %f
324             gzip -f9 -v "$D"
325         else
326             gunzip -v %f
327             bzip2 -v "$D"
328         fi
330 + t t
331 C       Convert gz<->bz2, tar.gz<->tar.bz2 & tgz->tar.bz2
332         for i in %t ; do
333             unset D
334             unset EXT
335             case "$i" in
336                 *.Z)   EXT=Z;;
337                 *.bz2) EXT=bz2;;
338                 *.gz)  EXT=gz;;
339                 *.tgz) EXT=tgz;;
340                 *.tpz) EXT=tpz;;
341                 *.z)   EXT=z;;
342             esac
343             case "$EXT" in
344                 bz2|Z|gz|z) D=`basename "$i" ."$EXT"`;;
345                 tgz|tpz)    D=`basename "$i" ."$EXT"`.tar;;
346             esac
347             if [ "$EXT" = "bz2" ]; then
348                 bunzip2 -v "$i"
349                 gzip -f9 -v "$D"
350             else
351                 gunzip -v "$i"
352                 bzip2 -v "$D"
353             fi
354         done
356 + x /usr/bin/open | x /usr/local/bin/open & x /bin/sh
357 o       Open next a free console
358         open -s -- sh