I am missing the CLI program bc in the base system. It’s quite useful to have an option to calculate things on the command line. Something like find /mnt/tank -iname '*.mkv' -o -iname '*.mp4' -ls | tr -s ' ' | cut -d ' ' -f 8 | paste -sd + | bc or find /mnt/tank -iname '*.mkv' -o -iname '*.mp4' -printf "%s\n" | paste -sd + | bc is quite useful to get the size of all videos, for example.
The binary is less than 100 kB size. Shouldn’t weigh down the install image too much. AFAIK, it’s part of the POSIX standard, so I think it should be included in a proper system anyway.