Install Embulk
Please reference https://github.com/embulk/embulk Following section are copy from embulk docs.
Document
Embulk documents: http://www.embulk.org/docs/
Quick Start
Linux & Mac & BSD
Embulk is a Java application. Please make sure that Java is installed.
Following 4 commands install embulk to your home directory:
curl --create-dirs -o ~/.embulk/bin/embulk -L "http://dl.embulk.org/embulk-latest.jar"
chmod +x ~/.embulk/bin/embulk
echo 'export PATH="$HOME/.embulk/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
Next step: Running example in 4 commands
Windows
Embulk is a Java application. Please make sure that Java is installed.
You can download embulk.bat
using this command on cmd.exe or PowerShell.exe:
PowerShell -Command "& {Invoke-WebRequest http://dl.embulk.org/embulk-latest.jar -OutFile embulk.bat}"
Next step: Running example in 4 commands
Running example
embulk example
command generates a sample CSV file so that you can try embulk quickly:
embulk example ./try1
embulk guess ./try1/example.yml -o config.yml
embulk preview config.yml
embulk run config.yml
Next step: setup CSV input plugin