Created
June 10, 2014 22:00
How to install csvfix on Ubuntu
This file contains 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
sudo apt-get install unzip make build-essential | |
cd /tmp | |
mkdir csvfix | |
cd csvfix | |
wget https://bitbucket.org/neilb/csvfix/get/version-1.6.zip | |
unzip version-1.6.zip | |
cd neilb-csvfix-e804a794d175 | |
make lin | |
cd csvfix/bin | |
sudo cp csvfix /usr/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great, I was able to directly use this Gist to compile and install
csvfix
on my Ubuntu EC2 instance. Thanks.