Is this Bash variable declaration statement:
foo='b'` `'ar' less efficient than this:
foo='bar' Does this way of formatting "hanging" or "aligned" indents (line continuations):
a_long_variable_name='a seemingly infinitely long '` `'string requiring continuatio'` `'n on the next line...' spawn sub-shells, waste resources, or affect performance in any way, apart from annoying those who dislike its form for (anti?)readability?
Efficiency as in: computer efficiency, not "humans typing many characters and creating space-based, gratuitous maintenance debt".
Can impact (or lack thereof) on performance be easily demonstrated?