make script insert RCS ids into generated files

This commit is contained in:
perry 1998-01-05 21:28:21 +00:00
parent 086015d681
commit 5646f55116
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh -
# bin2asm (binary to asm) shell script version by ukai
#
# $NetBSD: bin2asm.sh,v 1.1 1996/08/25 23:39:21 jtk Exp $
# $NetBSD: bin2asm.sh,v 1.2 1998/01/05 21:28:21 perry Exp $
#
if [ $# -lt 1 ]; then
echo 'usage: $0 [in]'
@ -12,6 +12,7 @@ size=`ls -l ${in} | awk '{print $5}'`
# Oops, must 8 byte align
len=`expr \( $size + 8 \) / 8 \* 8`
echo "/* \$NetBSD\$ */"
echo "/* This file is automatically generated by bin2asm.sh */"
echo "/* Original file is '${in}' */"
echo