The actual situation is a bit complicated, but the issue I'm running into is that I have an echo command within an eval command. Like so:
$ eval echo 'keep my spacing'
keep my spacing
$ echo 'keep my spacing'
keep my spacing
I was wondering how I could keep eval from stripping my spacing so that the first command prints out the same message as the second...
Here's a closer example to what's actually going on:
$ eval `python -c 'print "echo \"keep my spacing\""'`
keep my spacing