Created
October 7, 2017 22:34
-
-
Save yonglai/0adb0cf980fa5e4ae7ab1e2e4d4250aa to your computer and use it in GitHub Desktop.
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
#! /bin/bash | |
echo install ant | |
wget http://www.us.apache.org/dist/ant/binaries/apache-ant-1.10.1-bin.tar.gz | |
tar xvfz apache-ant-1.10.1-bin.tar.gz -C /opt | |
ln -s /opt/apache-ant-1.10.1 /opt/ant | |
sh -c 'echo ANT_HOME=/opt/ant>>/etc/environment' | |
ln -s /opt/ant/bin/ant /usr/bin/ant | |
rm apache-ant-1.10.1-bin.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment