bashスクリプトで、別の変数の内容から変数の内容を取得するにはどうすればよいですか?両方の変数名の末尾の番号が同じですか?
IP1=192.168.0.17
DIR1=/mnt/2tb/archive/src/
IP2=192.168.0.11
DIR2=~/src/
IP3=192.168.0.113
DIR3=~/src/
#get local ip and set variable HOST to local ip
HOST=$(ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | awk '{ print $1}')
# get HOST source DIR as variable from ip and preset variables
echo $HOSTDIR