I want to be able to gg=G on my bash scripts, or some variation of auto-format that won't obstruct a simple echo.
I have a feeling that something like this isn't an issue, I just haven't discovered the proper way to either:
- echo a string properly for this scenario
- issue the proper command for the job
If anyone could aid me, it'd be much appreciated.
What I type:
someFun()
{
echo "Some really long string that is going to be automatically
indented.";
}
What I see on the prompt
>./someFun
Some really long string that is going to be automatically
indented.
echo "First part..."\<ENTER>"Second part"However, this will not help forhere documents. – anishsane Dec 2 '12 at 6:11