Changes between Initial Version and Version 1 of Ticket #2227, comment 7
- Timestamp:
- 12/21/19 09:09:10 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2227, comment 7
initial v1 1 1 1. what's that 'trivial command' supposed to be? 2 2 {{{ 3 3 ~: echo <(ls) 4 4 /tmp/zshmgn3jo 5 5 }}} 6 6 2. the diff one looks wrong too: 7 7 {{{ 8 8 diff -u <(find ./ -type f|sort) <(cd %D; find ./ -type f|sort) 9 9 }}} 10 10 if 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