Last active
March 15, 2021 00:58
-
-
Save hiroyuki-sato/ea035710ab4078746def51a8b767d515 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for i in {20..27} ; do | |
echo "******************************************************************" | |
echo "*" | |
echo "*" | |
echo "* embulk v0.10.$i" | |
echo "*" | |
echo "*" | |
echo "******************************************************************" | |
for j in {1..5} ; do | |
echo "%%%%% try: $j %%%%%" | |
embulk-0.10.$i -X embulk_home=/Users/user/.embulk-dev/0.10.$i run example/conf.yml | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment