You want to do `echo "$A"`. Wrapping the variable in the quotes makes it a string.
Example:
[root@talara test]# A=$(
FILE1 ham test test FILE1 ham test
[root@talara test]# echo "$A"
** test **
You want to do `echo "$A"`. Wrapping the variable in the quotes makes it a string.
Example:
[root@talara test]# A=$(
FILE1 ham test test FILE1 ham test
[root@talara test]# echo "$A"
** test **