3

Which goes faster on Linux/Unix?

du -b file.dat

or:

stat -c %s file.dat
Gaff
  • 18,569
  • 15
  • 57
  • 68
Matt
  • 767
  • 1
  • 11
  • 18

2 Answers2

3

You can use the time command to find out:

time du -b file.dat
time stat -c %s file.dat
Chris Acheson
  • 1,269
  • 10
  • 7
3

It seems du is slightly faster in this example.

$ time bash -c 'for ((i=1; i<1000;i++)); do stat -c %s file1 >/dev/null; done'
real    0m3.588s
user    0m0.120s
sys 0m0.344s

$ time bash -c 'for ((i=1; i<1000;i++)); do du -b file1 >/dev/null; done'
real    0m3.161s
user    0m0.092s
sys 0m0.360s

But personally, I'd prefer to use stat, because most people use stat to retrieve basic information of a single file. So it's more likely stat will be optimized for such jobs in future.

Lenik
  • 17,942
  • 25
  • 87
  • 119
  • Here is stat: "real 0m2.183s" and here is du: "real 0m1.940s".. My file is 500MB [taken from /dev/zero], so I guess du _is_ faster.. – Matt Jul 18 '11 at 16:49