diff --git a/misc/mc.menu b/misc/mc.menu
index cf35412..061e69d 100644
a
|
b
|
shell_patterns=0 |
28 | 28 | |
29 | 29 | = t d |
30 | 30 | 3 Compress the current subdirectory (tar.gz) |
31 | | Pwd=`basename %d /` |
| 31 | Pwd=`basename "$PWD"` |
32 | 32 | echo -n "Name of the compressed file (without extension) [$Pwd]: " |
33 | 33 | read tar |
34 | 34 | if [ "$tar"x = x ]; then tar="$Pwd"; fi |
… |
… |
shell_patterns=0 |
37 | 37 | echo "../$tar.tar.gz created." |
38 | 38 | |
39 | 39 | 4 Compress the current subdirectory (tar.bz2) |
40 | | Pwd=`basename %d /` |
| 40 | Pwd=`basename "$PWD"` |
41 | 41 | echo -n "Name of the compressed file (without extension) [$Pwd]: " |
42 | 42 | read tar |
43 | 43 | if [ "$tar"x = x ]; then tar="$Pwd"; fi |
… |
… |
shell_patterns=0 |
46 | 46 | echo "../$tar.tar.bz2 created." |
47 | 47 | |
48 | 48 | 5 Compress the current subdirectory (tar.p7) |
49 | | Pwd=`basename %d /` |
| 49 | Pwd=`basename "$PWD"` |
50 | 50 | echo -n "Name of the compressed file (without extension) [$Pwd]: " |
51 | 51 | read tar |
52 | 52 | if [ "$tar"x = x ]; then tar="$Pwd"; fi |
… |
… |
shell_patterns=0 |
55 | 55 | echo "../$tar.tar.7z created." |
56 | 56 | |
57 | 57 | 6 Compress the current subdirectory (tar.lzma) |
58 | | Pwd=`basename %d /` |
| 58 | Pwd=`basename "$PWD"` |
59 | 59 | echo -n "Name of the compressed file (without extension) [$Pwd]: " |
60 | 60 | read tar |
61 | 61 | if [ "$tar"x = x ]; then tar="$Pwd"; fi |
… |
… |
shell_patterns=0 |
64 | 64 | echo "../$tar.tar.lzma created." |
65 | 65 | |
66 | 66 | 7 Compress the current subdirectory (tar.lz) |
67 | | Pwd=`basename %d /` |
| 67 | Pwd=`basename "$PWD"` |
68 | 68 | echo -n "Name of the compressed file (without extension) [$Pwd]: " |
69 | 69 | read tar |
70 | 70 | if [ "$tar"x = x ]; then tar="$Pwd"; fi |
… |
… |
shell_patterns=0 |
73 | 73 | echo "../$tar.tar.lz created." |
74 | 74 | |
75 | 75 | 8 Compress the current subdirectory (tar.xz) |
76 | | Pwd=`basename %d /` |
| 76 | Pwd=`basename "$PWD"` |
77 | 77 | echo -n "Name of the compressed file (without extension) [$Pwd]: " |
78 | 78 | read tar |
79 | 79 | if [ "$tar"x = x ]; then tar="$Pwd"; fi |