You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
227 B
9 lines
227 B
#!/bin/csh
|
|
|
|
foreach N ( 3 5 7 9 11 13 15 17 19 21 )
|
|
echo "Generating for N=$N"
|
|
prismpp .hermanN.pm.pp $N >! herman$N.pm
|
|
unix2dos herman$N.pm
|
|
#prismpp .hermanNmod.pm.pp $N >! herman"$N"mod.pm
|
|
#unix2dos herman"$N"mod.pm
|
|
end
|