Skip to content

Instantly share code, notes, and snippets.

@ikbear
Created November 21, 2011 19:49
Show Gist options
  • Save ikbear/1383711 to your computer and use it in GitHub Desktop.
Save ikbear/1383711 to your computer and use it in GitHub Desktop.
Bash shell for running the program
#!/bin/bash
# encoding: utf-8
rm data.txt
i=1
while [ "$i" -le 100 ]
do
python sim.py
i=$((i+1))
done
python analysis.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment