uutils has more overhead
uutils has more overhead
Posted Oct 24, 2025 11:09 UTC (Fri) by pixelbeat (guest, #7440)In reply to: uutils is doing well, but needs to be carefully managed by Keith.S.Thompson
Parent article: Date bug affects Ubuntu 25.10 automatic updates
Interesting, I hadn't realized /bin/true was still GNU. Perhaps this is a performance consideration, as all uutils have a larger startup overhead than their GNU equivalents, due mainly to the large multicall binary being used (due to rust binaries being significantly larger). For example:
$ time seq 10000 | xargs -n1 true real 0m8.634s user 0m3.178s sys 0m5.616s $ time seq 10000 | xargs -n1 uu_true real 0m22.137s user 0m6.542s sys 0m15.561sIt irks me to see mention of rust implementations being faster, when at a fundamental level like this they're slower and add significant overhead to every command run
