Изучая bash, я подумал, возможно ли это, с делом или с какой-нибудь функцией ...
Например..
./test.sh arg1 -p help,contact -e html,php # don't know how to expand them both
ИЛИ возможно ли сделать что-то подобное?
./test.sh arg1 -p help -p contact -e html -e php
or
./test.sh arg1 -p help -e html -p contact -e php
Я хочу, чтобы результат был как ...
URL-адрес www.google.com/help.html
URL-адрес www.google.com/contact.php
код:
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
ВЫВОД: # ближайший я могу добраться до .. первый аргумент -p
./test.sh -p help -p contact -e html -e php
URL-адрес http://www.google.com/help.html
URL-адрес http://www.google.com/help.php