Changes between Version 3 and Version 4 of Ticket #3770, comment 5


Ignore:
Timestamp:
03/10/17 11:51:14 (7 years ago)
Author:
rdmo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3770, comment 5

    v3 v4  
    2020}}} 
    2121 
    22 Use of the double percent symbols `%%` resolves simliar simpler issues. For complex examples perhaps this is not so. 
     22Use of the double percent symbols `%%` resolves similarly simpler issues. For complex examples perhaps this is less so. 
    2323 
    24 Note: edited for clarity. 
     24Escaped `.mc.menu` entry: 
     25 
     26{{{ 
     27# Testing mc macro escapes accessed via the .mc.menu file: 
     28= t f 
     29A   date +%%d 
     30    date +%%d 
     31}}} 
     32 
     33Result in terminal window: 
     34 
     35{{{ 
     36username@sitename:~$  /bin/sh /tmp/user/####/mc-username/mcusr###### 
     3710 
     38}}} 
     39 
     40Unescaped `.mc.menu` entry: 
     41 
     42{{{ 
     43= t f 
     44B   date +%d 
     45    date +%d 
     46}}} 
     47 
     48Result in terminal window: 
     49 
     50{{{ 
     51username@sitename:~$  /bin/sh /tmp/user/####/mc-username/mcusr###### 
     52/home/username 
     53}}} 
     54 
     55Note: edited for clarity and added the `mc.menu` info.