
# change the following line to indicate where your cdf is 
cdf=/home/downey/bin/cdf

for name in uniform normal lognormal exponential pareto
do
    echo $name
    $cdf rand.$name > rand.$name.cdf
    $cdf -t logx rand.$name > rand.$name.cdf.logx
    $cdf -t logy rand.$name > rand.$name.cdf.logy
    $cdf -t loglog rand.$name > rand.$name.cdf.loglog
done

