|
|
|
|
|
by lloeki
4296 days ago
|
|
Just to be sure: $ du -h -d 0 /Applications/Google\ Chrome.app
317M /Applications/Google Chrome.app
$ tar -c -f - /Applications/Google\ Chrome.app | wc -c
tar: Removing leading '/' from member names
331683840
$ find /Applications/Google\ Chrome.app -type f -print0 | xargs -0 cat | wc -c
331010107
|
|