我的.bashrc看起来像这样:
alias name@server="ssh server sname" echo "bashrc read"
echo语句仅用于检查是否已读取.但回声什么也没做.我想为一个快速ssh设置一个别名,进入一个执行某个命令的框,这个命令是远程框上的工作别名.
我有一段时间没有使用cygwin,但我猜它想要〜/ .bash_profile.简单的修复测试.
原文链接:https://www.f2er.com/bash/386080.htmlln -s ~/.bashrc ~/.bash_profile
或者如果〜/ .bash_profile存在,则源.bashrc.
if [ -f ~/.bashrc ] then . ~/.bashrc fi