1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00

Convenience script to tersely display all currently running package builds.

This commit is contained in:
Mark Linimon 2006-07-09 18:16:32 +00:00
parent 8e499383da
commit 8ccf5fa29d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167296

View File

@ -0,0 +1,11 @@
#!/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/ /-/" | \
sort