scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0009-delete.sh (305B)


      1 #!/bin/sh
      2 
      3 
      4 set -e
      5 
      6 trap "rm -f file.a; exit" 0 2 3
      7 
      8 ############################################################################
      9 #delete two members, 2nd and 3rd
     10 
     11 cp master.a file.a
     12 scc-ar -dv  file.a file2 file3
     13 
     14 if scc-ar -tv file.a file2 file3
     15 then
     16 	echo file-2 file-3 were not deleted >&2
     17 	exit 1
     18 fi