...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, but I need the (rough) size in bytes so multiply it by 1000, but awk prints it as...