我正在编写一个脚本来自动为我设置新项目。
这包括拉下一个 github 存储库。
我想要做的是从我的脚本中得到一些输出,然后调用git clone $repo
我想在它运行时显示该命令的输出,但是当它运行时,如果它成功运行,则替换它的输出(注意只是 git 命令输出,我仍然希望之前的输出在那里)repository successfully cloned
和如果失败,只需将输出留在那里,然后打印repository cloning failed
。
我怎样才能做到这一点?
以下是我当前(相当简单)的脚本。
#! /bin/bash
# -p project name
templateurl="git@bitbucket.org:xxx/xxx-site-template.git"
while getopts ":p:" opt; do #eventually I'll add more options here
case $opt in
p)
project=$OPTARG
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
:)
echo "Option -$OPTARG requires an argument." >&2
exit 1
;;
esac
done
if [ -z "$project" ]; then
echo "Project name required"
exit 1
fi
clear
echo "|==========================|"
echo "| New xxx Project Creator |"
echo "|==========================|"
echo "Project: $project"
if [ -d "$project" ]; then
echo "Directory $project already exists!"
exit 1
fi
mkdir $project
if [ ! -d "$project" ]; then
echo "Failed to create project directory!"
exit 1
fi
echo "Cloning xxx Template repository"
git clone $templateurl $project