ous.sh 243 B

12345678910
  1. #!/bin/bash
  2. count=0
  3. while true
  4. do
  5. count=$((count+1))
  6. echo "Calling phantomJS fr the $count th time"
  7. ./phantomjs --ssl-callbacks=slitheen --ssl-protocol=tlsv1.2 --ssl-ciphers=DHE-RSA-AES256-GCM-SHA384 loadpage.js > out-$count-put.out
  8. done