Patch by Andreas Franke <afranke@mathweb.org> a=justdave git-svn-id: svn://10.0.0.236/trunk@168407 18797224-902f-48f8-a5cc-f745e15eee43
8 lines
146 B
Bash
Executable File
8 lines
146 B
Bash
Executable File
#!/bin/sh
|
|
|
|
thisdir=`dirname "$0"`
|
|
bugids=`$thisdir/bugids "$@"`
|
|
if test "$?" != "0"; then echo "$bugids" 1>&2; exit 1; fi
|
|
|
|
echo "$bugids" | wc -w
|