Voir :
Ne pas confondre la logique booléenne avec la logique aristotélicienne / scolastique !
Voir :
Voir aussi :
echo aaa > a.txt echo bbb > b.txt echo common | tee a.txt b.txt
$ cat a.txt aaa common $ cat b.txt bbb common
$ combine a.txt and b.txt common $ combine a.txt or b.txt aaa common bbb common $ combine a.txt xor b.txt aaa bbb $ combine a.txt not b.txt aaa $ combine a.txt or b.txt |sort | uniq aaa bbb common