Código Bash:
Ver original#!/bin/bash
texto1='Este es el texto 1'
texto2='Este es el texto 2'
texto3='Este es el texto 3'
echo ${!1}
Código:
$ ./archivo.sh texto1
Este es el texto 1
$./archivo.sh texto3
Este es el texto 3
Búscalo como "indirect expansion" (técnicamente correcto) o como "variables variables" . Punto 3.4.4:
http://tldp.org/LDP/Bash-Beginners-G...ect_03_04.html