parent
1f377f8bd4
commit
cbbf003904
@ -1,4 +1,7 @@ |
||||
INSTANCE_NUM=1 |
||||
|
||||
echo "Creating $$INSTANCE_NUM instances at 8 regions" |
||||
if [ $# -eq 0 ]; then |
||||
echo "Your command line contains $# arguments" |
||||
exit(1) |
||||
fi |
||||
INSTANCE_NUM=$1 |
||||
echo "Creating $INSTANCE_NUM instances at 8 regions" |
||||
python create_instances.py --regions 1,2,3,4,5,6,7,8 --instances $INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM |
||||
|
@ -1,4 +1,4 @@ |
||||
INSTANCE_NUM=2 |
||||
INSTANCE_NUM=50 |
||||
|
||||
echo "Creating $$INSTANCE_NUM instances at 8 regions" |
||||
python create_instances.py --regions 1,2,3,4,5,6,7,8 --instances $INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM --instance_output instance_output_2.txt |
||||
|
@ -1,4 +1,4 @@ |
||||
INSTANCE_NUM=50 |
||||
INSTANCE_NUM=$1 |
||||
|
||||
echo "Creating $$INSTANCE_NUM instances at 8 regions" |
||||
python create_instances.py --regions 1,2,3,4,5,6,7,8 --instances $INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM,$INSTANCE_NUM --instance_output instance_output_500.txt |
Loading…
Reference in new issue