Changes between Initial Version and Version 1 of Ticket #2227, comment 7


Ignore:
Timestamp:
12/21/19 09:09:10 (4 years ago)
Author:
andrew_b
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2227, comment 7

    initial v1  
    111. what's that 'trivial command' supposed to be? 
    2  
     2{{{ 
    33~:  echo <(ls) 
    44/tmp/zshmgn3jo 
    5  
     5}}} 
    662. the diff one looks wrong too: 
    7  
     7{{{ 
    88diff -u <(find ./ -type f|sort) <(cd %D; find ./ -type f|sort) 
    9  
     9}}} 
    1010if for example left directory has three files (a, b and c), and right only two of them (b and c) wouldn't it try to compare left-a with right-b and left-b with right-c and finish up throwing an error? The right approach is: diff -ur . %D