ack/lang/occam/lib/AR4
1987-02-24 18:36:02 +00:00

12 lines
169 B
Bash
Executable file

#!/bin/sh
case $# in
0) ar ru /user0/bot/lib/lib4.a *.o
ranlib /user0/bot/lib/lib4.a
rm -f *.o
;;
*) keys=$1
shift
ar $keys /user0/bot/lib/lib4.a $*
;;
esac