list of built-in tools

Mike Clarke jmc-freebsd2 at milibyte.co.uk
Sat Sep 30 09:45:00 UTC 2017


On Fri, 29 Sep 2017 16:12:18 -0400
Ernie Luzar <luzar722 at gmail.com> wrote:

> Looking for a list or index of all the basic system utilities.

You can get a list of names and descriptions with this Bourne shell command:

cd /usr/share/man/man1 && (for i in `ls -1 | sed 's/\.1\.gz//'`; do whatis $i ; done) 2>/dev/null | sort -u

-- 
Mike Clarke


More information about the freebsd-questions mailing list