Last active
March 15, 2021 00:58
Revisions
-
hiroyuki-sato revised this gist
Mar 15, 2021 . 1 changed file with 1741 additions and 0 deletions.There are no files selected for viewing
-
hiroyuki-sato created this gist
Mar 15, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #!/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