mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
12 lines
293 B
Bash
Executable File
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
|