scc

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

0014-print.sh (393B)


      1 #!/bin/sh
      2 
      3 set -e
      4 
      5 tmp1=`mktemp`
      6 tmp2=`mktemp`
      7 
      8 trap "rm -f file.a $tmp1 $tmp2; exit" 0 2 3
      9 
     10 ############################################################################
     11 #print 3rd member
     12 
     13 cp master.a file.a
     14 scc-ar -p file.a file3 > $tmp1
     15 
     16 cat <<! > $tmp2
     17 and at the end, this is the last file
     18 that should go at the end of the file,
     19 thus it should go in the third position.
     20 !
     21 
     22 cmp $tmp1 $tmp2