is this a bug or feature ? i never know with bash :)
$ echo "HI THERE" > foo
$ export f=$(<foo)
$ echo $f
HI THERE
$ export v=f
$ export ${v}=$(<foo)
$ echo $f
HI
$ export ${v}="$(<foo)"
$ echo $f
HI THERE
-mike
pgpqgaD69pcQP.pgp
Description: PGP signature
_______________________________________________ Bug-bash mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-bash
