mac中配置使用CoreShell上传下载文件。
配置方式。
官方配置方式。
在远程linux上执行下面的命令即可。
curl -fsSL https://raw.githubusercontent.com/codinn/core-shell-scripts/master/bashrc_Core_Shell -o ~/.bashrc_Core_Shell && . ~/.bashrc_Core_Shell && grep -q ".bashrc_Core_Shell" ~/.bash_profile || echo $"[ -n "$SSH_TTY" ] && [ -r "$HOME/.bashrc_Core_Shell" ] && . "$HOME/.bashrc_Core_Shell"" >> ~/.bash_profile
但是因为国内访问不了https://raw.githubusercontent.com/codinn/core-shell-scripts/master/bashrc_Core_Shell 。可以使用下面的方式。
我的配置方式。
其实就是把上面官方命令的运行过程手动做一下。
- 在远程linux上新建文件
.bashrc_Core_Shell
。访问https://raw.githubusercontent.com/codinn/core-shell-scripts/master/bashrc_Core_Shell 地址把返回的内容放入.bashrc_Core_Shell
中。 - 编辑
.bash_profile
文件(没有就新建),在.bash_profile
文件的末尾加入下面的内容。
[[ -n "$SSH_TTY" || -n "$SSH_CONNECTION" ]] && [ -r "$HOME/.bashrc_Core_Shell" ] && . "$HOME/.bashrc_Core_Shell"
- 根据Linux系统的不同。如果在当前用户目录下面有
.bashrc
文件(ubantu系统有),还要在.bash_profile
文件的末尾加入下面的内容。
[ -r "$HOME/.bashrc" ] && . "$HOME/.bashrc"
这个目的是在用户登陆Linux后,加载.bash_profile
文件的时候加载.bashrc
文件,否则.bashrc
文件的配置不生效。
4. 关闭这个远程Linux连接,然后重新连接即可。或者执行命令source .bash_profile
重新加载配置。
上面的步骤都是在远程linux服务器做的,如果要连接多个Linux服务器,每个服务器都得做一遍。可以把
.bashrc_Core_Shell
的内容放在自己的网站上,把官方的curl命令请求的地址换成自己的,然后再执行官方的curl命令。(ubantu等系统还得带上.bashrc
文件的配置)
以上是 mac中配置使用CoreShell上传下载文件。 的全部内容, 来源链接: utcz.com/z/513260.html