$ cat foo.txt
b
a
c
$ cat bar.txt
d
c
f
$ sort foo.txt bar.txt | uniq
a
b
c
d
f
※ sort -u foo.txt bar.txt
と同じ。
$ sort foo.txt bar.txt | uniq -d
c
ref. Unix コマンドで2つのファイルの共通行を抽出する方法
sort foo.txt bar.txt | uniq -u
a
b
d
f
*/
は必須(*/
の意味は要調査).
で始まるディレクトリ名は抽出できない(sudo ls -ad */
でもだめ)*/は必須
$ sudo ls -d */ | sudo xargs du -sh
$ ls -al | grep ^d | awk 'NR>2 {print $9}' | sudo xargs du -sh