Bash - como expandir a variável ao usar opções de caso

4

Aprendendo bash e eu estava pensando se isso é possível, com caso ou com alguma função ..

Por exemplo ..

./test.sh arg1 -p help,contact -e html,php # don't know how to expand them both

OU é possível fazer algo assim?

./test.sh arg1 -p help -p contact -e html -e php
or 
./test.sh arg1 -p help -e html -p contact -e php

Eu quero que a saída seja como ..

URL is www.google.com/help.html

URL is www.google.com/contact.php

código:

var1=$1
url="http://www.google.com/"

# maybe use a for loop here??

# Okay now if I use getopts - @Hannu

while getopts ":p:e:" o; do
case "${o}" in
        p)
        page+=("$OPTARG")
        ;;
        e)
        extension+=("$OPTARG")
        ;;
esac
done
shift $((OPTIND -1))

#I need a better for loop here - which can expand both variables

for val in "${extension[@]}"; # 
do

# FAIL - pass first switch arguments -p and -e to for loop

echo "URL is http://www.google.com/$page.$val
done

OUTPUT: # mais próximo que eu possa chegar .. primeiro -p argumento

./test.sh -p help -p contact -e html -e php

URL is http://www.google.com/help.html

URL is http://www.google.com/help.php

    
por Lewis Wheeler 18.05.2017 / 19:17

1 resposta

1

bem, o seguinte parece funcionar. Graças a @tso

link

#!/bin/bash
var1=$1
url="http://www.google.com/"

# maybe use a for loop here??

# Okay now if I use getopts - @Hannu

while getopts ":p:e:" o; do
case "${o}" in
        p)
        page+=("$OPTARG")
        ;;
        e)
        extension+=("$OPTARG")
        ;;
esac
done
shift $((OPTIND -1))


for ((i=0;i<${#extension[@]};++i));
do
echo "URL is www.google.com/${page[i]}.${extension[i]}"
done
    
por 19.05.2017 / 12:56

Tags