bash: erro de sintaxe próximo do token inesperado '-o'

0

Estou recebendo um erro ao executar um script bash para fazer backup das ramificações do git:

O script é o seguinte:

#!/usr/local/bin/bash
# this shebang assumes you have bashv4 installed. If not, use /bin/bash

echo "running backup branch script"

current_branch="$(git branch | grep '\* ' | sed 's/^.*\( .*\)//g')"

dltbranch() {
    git push origin --delete $1
    git push upstream --delete $1
    git branch -D $1
}

backup_branch() {
    git checkout $1
    git checkout -b backup__$1
    dltbranch $1
}

reset_branch() {
    the_new_current_branch="$(git branch | grep '\* ' | sed 's/^.*\( .*\)//g')"
    echo "$the_new_current_branch"
    if [ ! $the_new_current_branch = $1 ]; then
        git checkout $1
    fi
}

branch_is_protected(){
    if [[ "$1" == dev* ]] -o [[ "$1" == "master"]] -o [[ "$1" == backup* ]]
    then
        echo "protected"
        exit 1
    else
        echo "not protected"
        exit 0
    fi
}

backup_all_branches(){
    branches="$(git for-each-ref refs/heads | cut -d/ -f3-)"
    echo $branches

    for branch in 'echo "$branches"'; do

        backup_branch "$branch";
        # echo "$branch"
    done
}

Como esperado, não tenho erros na verificação de shell e não consigo ver nenhum erro. O problema é resolvido comentando o branch_is_protected

branch_is_protected(){
    if [[ "$1" == dev* ]] -o [[ "$1" == "master"]] -o [[ "$1" == backup* ]]
    then
        echo "protected"
        exit 1
    else
        echo "not protected"
        exit 0
    fi
}

Qualquer ajuda apreciada, ty

    
por codyc4321 12.04.2017 / 22:38

1 resposta

0

Tente usar || para representar:

branch_is_protected(){
    if [[ "$1" == dev* || "$1" == "master" || "$1" == backup* ]]
    then
        echo "protected"
        exit 1
    else
        echo "not protected"
        exit 0
    fi
}
    
por 12.04.2017 / 22:44

Tags