> Hi!
> 
> > On Wed, Aug 27, 2014 at 05:30:22PM -0500, Lawrence K. Chen, P.Eng. wrote:
> > > Wonder if there's still time to now see what ports I have installed that
> > > haven't been staged yet?
> > 
> > This doesn't quite answer your question, but there's a portsmon page
> > listing all nonstaged ports:
> > 
> > http://portsmon.freebsd.org/portsconcordancefornostage.py?sortby=portname
> 
> bapt has this list, I don't know the update frequency etc.
> 
> http://people.freebsd.org/~bapt/notstaged.txt

To have it updated whenever you want

#!/bin/sh

echo "
========== Checking ports not staged. =======================
"
/usr/local/bin/curl -s 
'http://portsmon.freebsd.org/portsconcordancefornostage.py?sortby=portname' | 
/usr/bin/grep 'portname' | /usr/bin/cut -d'>' -f3 | /usr/bin/cut -d'<' -f1 | 
/usr/bin/sed '1,2d;$d' > notstaged.txt || exit 1
/usr/bin/wc -l notstaged.txt || exit 1

echo "
========== Portnotstaged done. =======================
"

Cheers,
-- 
Carlos Jacobo Puga Medina <c...@fbsd.es>
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to