作为程序员一定要保持良好的睡眠,才能好编程

shell 与客户交互手段 read

发布时间:2019-12-13




shell 与客户交互手段


使用read



git add --all

echo "请输入提交描述文字如果没有默认: 提交代码"

read describe



if [ ! -n "$describe" ]

then

describe="提交代码"

fi



if [ ! -n "$describe" ]

then

describe="提交代码"

fi

echo $describe

git commit -m $describe