1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/Tools/portbuild/scripts/showrunning
2006-07-09 19:02:14 +00:00

12 lines
293 B
Bash
Executable File

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