2006-07-09 20:16:32 +02:00
|
|
|
#!/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@ @-@" | \
|
2006-07-09 20:16:32 +02:00
|
|
|
sort
|