0009-delete.sh - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       0009-delete.sh (314B)
       ---
            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, 2nd and 3rd
           10 
           11 cp master.a file.a
           12 $EXEC scc ar -dv  file.a file2 file3
           13 
           14 if $EXEC scc ar -tv file.a file2 file3
           15 then
           16         echo file-2 file-3 were not deleted >&2
           17         exit 1
           18 fi