mkproto (192B)
1 #!/bin/sh 2 3 export LC_ALL=C 4 5 for dir 6 do 7 find $dir | 8 while read i 9 do 10 if test -d $i 11 then 12 echo d 755 $i 13 elif test -x $i 14 then 15 echo f 755 $i 16 else 17 echo f 644 $i 18 fi 19 done 20 done
sccsimple c99 compiler | |
git clone git://git.simple-cc.org/scc | |
Log | Files | Refs | Submodules | README | LICENSE |