Hi!

Here is a simple helper script (sh & sed), may be worth to be included
in the distribution. It takes the output of busybox and creates a sorted
list of applets, one name per line. May be used for things like this:

busybox-build1 | bbapplets >applets-1.lst
busybox-build2 | bbapplets >applets-2.lst
comm -3 applets-1.lst applets-2.lst

Shows which applets are in build1 and not in build2 and wise versa (play
with comm parameter -123).

Feel free to use as you like.

--
Harald

#!/bin/sh
sed '   /^BusyBox/,/^Currently/d
        s/,$//
        s/,/\n/g
        s/[ \t]//g
        /^$/d
' | sort
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to