Guest User

Untitled

a guest
Jan 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #/bin/sh
  2. # only files, subfolders excluded
  3. # example diff <(ls -FL ./one/ | grep -v /) <(ls -FL ./another/ | grep -v /) | awk '{if($1=="<") print $2;}'
  4. diff <(ls -FL $1 | grep -v /) <(ls -FL $2 | grep -v /) | awk '{if($1=="<") print $2;}'
Add Comment
Please, Sign In to add comment