freebsd_amp_hwpstate/nls/catgen

13 lines
188 B
Plaintext
Raw Normal View History

2012-02-20 00:53:59 +00:00
#!/bin/sh
# Wrapper for gencat
TMP=/tmp/catgen.$$
trap "rm -f $TMP" 0 1 2 3 15
GENCAT="$1"
shift
OUT="$1"
shift
cat "$@" > "$TMP"
echo "$(basename "$OUT" .cat)"
"${GENCAT}" "$OUT" "$TMP"