freebsd-ports/Tools/portbuild/scripts/showrunning

12 lines
293 B
Text
Raw Normal View History

#!/bin/sh
#
# $FreeBSD$
#
# show currently running builds in terse format
#
ps axww | \
grep "/var/portbuild/scripts/pdispatch" | \
grep -v "grep /var/portbuild/scripts/pdispatch" | \
2006-07-09 21:02:14 +02:00
sed -e "s@.*pdispatch @@;s@/var/portbuild/scripts/portbuild .*/usr/ports/@@;s@^ @@g;s@ @-@" | \
sort