0020-list.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
---
0020-list.sh (348B)
---
1 #!/bin/sh
2
3 set -e
4
5 tmp1=`mktemp`
6 tmp2=`mktemp`
7
8 trap "rm -f file.a $tmp1 $tmp2" 0 2 3 15
9
10 ############################################################################
11 #print 2nd member with verbose
12
13 cp master.a file.a
14 $EXEC scc ar -tv file.a file2 >$tmp1
15
16 cat <<! > $tmp2
17 rw-r--r-- `id -u`/`id -g` Tue Jan 1 00:00:00 1980 file2
18 !
19
20 cmp $tmp1 $tmp2