postgresql/src/MAKE_ID

18 lines
306 B
Plaintext
Raw Normal View History

#!/bin/sh
#
1996-10-03 19:27:01 +02:00
# $Header: /cvsroot/pgsql/src/Attic/MAKE_ID,v 1.1 1996/10/03 17:26:13 momjian Exp $
#
if test $# -ne 1; then
echo "usage: $0 PORTNAME"
exit 1
fi
PORTNAME=$1
gfind . port/$PORTNAME -type f -name '*.[chly]' -print | mkid -S.gen=C - 2>&1 | grep -v 'No scanner for language'
exit 0