scc

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

0023-extract.sh (352B)


      1 #!/bin/sh
      2 
      3 set -e
      4 
      5 tmp1=`mktemp`
      6 tmp2=`mktemp`
      7 
      8 trap "rm -f file* $tmp1 $tmp2; exit" 0 2 3
      9 
     10 ############################################################################
     11 #extract 1st member
     12 
     13 cp master.a file.a
     14 scc-ar -xv file.a file1
     15 
     16 cat <<EOF > $tmp1
     17 This is the first file,
     18 and it should go in the
     19 first position in the archive.
     20 EOF
     21 
     22 cmp file1 $tmp1