Centos7 安装Ant

# 下载安装包地址
https://ant.apache.org/bindownload.cgi
 

# 选择相应的版本 我这里选的是apache-ant-1.10.7-bin.tar.gz
wget -P /home/seven/downloads https://mirror.bit.edu.cn/apache//ant/binaries/apache-ant-1.10.7-bin.tar.gz

# 解压
tar -zxvf apache-ant-1.10.7-bin.tar.gz

# 转移
mv apache-ant-1.10.7 /opt/ant

# 环境配置:
vi /etc/profile
export ANT_HOME=/opt/ant
export PATH=$PATH:$ANT_HOME/bin

# 强制刷新 
source /etc/profile

# 验证
ant -version





# 注:
wget命令解析    
-P,  --directory-prefix=PREFIX  save files to PREFIX/...
     --cut-dirs=NUMBER          ignore NUMBER remote directory components.

 

你可能感兴趣的:(linux)