0005-append.sh (306B)
1 #!/bin/sh 2 3 set -e 4 5 tmp1=`mktemp` 6 tmp2=`mktemp` 7 8 trap "rm -f file.a f1 f2 f3 $tmp1 $tmp2" 0 2 3 15 9 10 ########################################################################### 11 #empty file list 12 13 rm -f file.a 14 if $EXEC scc ar -qv file.a badfile.a 15 then 16 echo "ar -q failed to detect missed file" >&2 17 exit 1 18 fi