in the meantime I wrote the following quick script:


#!/bin/sh


# Create a list of all dir's
find /usr/ports/ -depth 2 -type directory -print > ports_structure

# for each discovered dir, cd into it and do rmconfig
file=ports_structure
while read dr1
do
cd $dr1;make rmconfig
done<$file




very simple script if you ask me. tested and working. Any
suggestions/ideas/opinions are welcomed.
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Reply via email to