2020-02-21 Cygwin 命令行安装命令apt-cyg

Cygwin的apt-cyg,类似于Linux的yum,一行命令实现包安装,方便快捷。

安装apt-cyg、telnet

安装过程需要使用wget,需要使用cygwin安装包安装。

#下载apt-cyg
wget https://raw.githubusercontent.com/transcode-open/apt-cyg/master/apt-cyg
#将apt-cyg作为可执行命令
mv apt-cyg /bin/apt-cyg
chmod +x /bin/apt-cyg
#使用当前源安装telnet
apt-cyg install inetutils

其他命令:

#查看当前源
apt-cyg mirror
#配置http://mirrors.163.com/cygwin/为当前源
apt-cyg mirror http://mirrors.163.com/cygwin
#更新源
apt-cyg update
#删除telnet
apt-cyg remove inetutils

你可能感兴趣的:(2020-02-21 Cygwin 命令行安装命令apt-cyg)