5 ms·
I'm guessing this was generated by running `man -f` on the list of executables provided by util-linux. descriptions() { xargs -I '{}' man -f '{}' ; } e
by cron 14y ago
I'm guessing this was generated by running `man -f` on the list of executables provided by util-linux.
descriptions() { xargs -I '{}' man -f '{}' ; }
executables() { pkgfile -bl $1 | cut -f 2; } # Arch Linux specific
executables util-linux | descriptions 2> missed | sort | less