我刚刚在Shell脚本中编写了这个函数:
clone_and_dev() {
REPO=$1
echo
echo "Beginning process for the $REPO repository..."
git clone git@github.com:keyfer/$REPO.git
cd "$REPO"
}
问题在于cd
命令似乎不起作用。我想知道是否有办法让这项工作。
谢谢!
答案 0 :(得分:0)
您需要添加开始cmd / k 要么 启动cmd / k“在这里放置新窗口的命令” 见:
clone_and_dev() {
REPO=$1
echo
echo "Beginning process for the $REPO repository..."
git clone git@github.com:keyfer/$REPO.git
cd "$REPO"
start cmd /k
}