Bash Command Substitution

From NovaOrdis Knowledge Base
Revision as of 00:02, 16 July 2017 by Ovidiu (talk | contribs) (Created page with "=Internal= =Overview= Command substitution allows us to take the stdout output of a command or function, which would normally be sent to stdout of the executing shell, and s...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

Command substitution allows us to take the stdout output of a command or function, which would normally be sent to stdout of the executing shell, and save it as the value of a variable. To do this we place the command or the function within brackets, preceded by a $ sign.

...
local content
content=$(ps -ef)