Is it possible to print a larger number than a standard 32bit integer?
For example, I need to output the size of a directory in bytes, and the directory is 6GB.
I've tried a few things, but the simplest line is:
du -s -k | awk 'print $1*1000}'
The -k option lists the directory size in KB...