URI: 
       0008-delete.sh - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0008-delete.sh (317B)
       ---
            1 #!/bin/sh
            2 
            3 
            4 set -e
            5 
            6 trap "rm -f file.a" 0 2 3 15
            7 
            8 ############################################################################
            9 #delete two members, 1st and 2nd
           10 
           11 cp master.a file.a
           12 
           13 $EXEC scc ar -dv file.a file1 file2
           14 
           15 if $EXEC scc ar -tv file.a file1 file2
           16 then
           17         echo file-1 or file-2 were not deleted >&2
           18         exit 1
           19 fi