linux show file and dir sizes
For current dir
$ du -sh .
for file and dirs in current path, with max depth 1
$ du -h -d 1
or just simply(h, d, 1 args merged as one)
$ du -hd1
For current dir
$ du -sh .
for file and dirs in current path, with max depth 1
$ du -h -d 1
or just simply(h, d, 1 args merged as one)
$ du -hd1