24 | | Note: edited for clarity. |
| 24 | Escaped `.mc.menu` entry: |
| 25 | |
| 26 | {{{ |
| 27 | # Testing mc macro escapes accessed via the .mc.menu file: |
| 28 | = t f |
| 29 | A date +%%d |
| 30 | date +%%d |
| 31 | }}} |
| 32 | |
| 33 | Result in terminal window: |
| 34 | |
| 35 | {{{ |
| 36 | username@sitename:~$ /bin/sh /tmp/user/####/mc-username/mcusr###### |
| 37 | 10 |
| 38 | }}} |
| 39 | |
| 40 | Unescaped `.mc.menu` entry: |
| 41 | |
| 42 | {{{ |
| 43 | = t f |
| 44 | B date +%d |
| 45 | date +%d |
| 46 | }}} |
| 47 | |
| 48 | Result in terminal window: |
| 49 | |
| 50 | {{{ |
| 51 | username@sitename:~$ /bin/sh /tmp/user/####/mc-username/mcusr###### |
| 52 | /home/username |
| 53 | }}} |
| 54 | |
| 55 | Note: edited for clarity and added the `mc.menu` info. |