]> git.saurik.com Git - apple/security.git/blob - SecurityTests/clxutils/certcrl/testSubjects/X509tests/makeCertScr
Security-57031.10.10.tar.gz
[apple/security.git] / SecurityTests / clxutils / certcrl / testSubjects / X509tests / makeCertScr
1 #! /bin/tcsh -f
2 #
3 # Generate a certcrl script based on files in current directory.
4 #
5 set dirName=$cwd:t
6 echo test = $dirName
7 echo "dir =" $dirName
8 foreach i (End*.crt)
9 echo cert = \"$i\"
10 end
11 foreach i (Intermediate*.crt)
12 echo cert = \"$i\"
13 end
14 foreach i (*.crl)
15 echo "crl =" \"$i\"
16 end
17 foreach i (*Anchor*.crt)
18 echo root = \"$i\"
19 end
20 echo end
21 echo ""
22