我克隆了 repo https://github.com/revans/bash-it.git并在 linux 下成功安装了它,但是当我尝试在 Windows7 MSYS 下安装它时遇到了麻烦。
在 install.sh 中:
function load_all() {
file_type=$1
[ ! -d "$BASH_IT/$file_type/enabled" ] && mkdir "$BASH_IT/${file_type}/enabled"
ln -s $BASH_IT/${file_type}/[^_]available/* "${BASH_IT}/${file_type}/enabled"
}
它返回一些像这样的错误
Would you like to enable all, some, or no aliases? Some of these may make bash s
lower to start up (especially completion). (all/some/none) all
mkdir: cannot create directory `/c/Users/Dan/.bash_it/aliases/enabled': No such
file or directory
看起来路径是正确的并被引用,我以管理员身份运行 cmd 然后运行 msys.bat,还有什么问题吗?