Coordinate distributed systems.
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.
|
#!/bin/bash |
|
|
|
set -e |
|
|
|
python_version=$(python --version 2>&1) |
|
echo "Running using '$python_version'" |
|
for filename in examples/*.py; do |
|
echo "Activating '$filename'" |
|
python $filename |
|
done
|
|
|