#!/bin/sh mivar=“Hola” echo $mivar echo “$mivar” echo ‘$mivar’ echo \$mivar echo Ingrese un texto read mivar echo ‘$mivar’ equivale a $mivar exit 0