Skip to content
Advertisement

What is the advantage of using bash -c over using a here string [closed]

Is there any real benefit to using bash -c 'some command' over using bash <<< 'some command'

They seem to achieve the same effect.

Advertisement

Answer

  • bash -c '...' leaves you the option to provide stdin input to the command,

  • whereas bash <<<'...' precludes that option, because stdin is already being used to provide the script to execute.

Examples:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement