gpt4 book ai didi

linux - 为什么我的 bash shell 脚本会出现这个错误

转载 作者:太空宇宙 更新时间:2023-11-04 11:25:42 24 4
gpt4 key购买 nike

我一直在尝试向我的 bash shell 脚本添加一个选项,有人执行“-r”我向 git 服务器推送,但我收到以下错误

mirror.sh: line 8: conditional binary operator expected
mirror.sh: line 8: syntax error near `-e'
mirror.sh: line 8: `if [[ "$1" -e "-r" ]];then'

下面是我的 bash 脚本:

#!/bin/bash
cd /home/joe/Documents/sourcecode/mirror.git
git svn rebase

#
# if option -r then push to master
#
if [[ "$1" -e "-r" ]];then
git push origin master
fi

最佳答案

尝试:

if [[ "$1"= "-r"]];then

if [[ "$1"== "-r"]];then

关于linux - 为什么我的 bash shell 脚本会出现这个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14875251/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com