Bash eval

From NovaOrdis Knowledge Base
Revision as of 03:21, 27 June 2020 by Ovidiu (talk | contribs)
Jump to navigation Jump to search

Internal

Overview

eval [arg ...]

The args are read and concatenated together into a single command. This command is then read and executed by the shell, and its exit status is returned as the value of eval. If there are no args, or only null arguments, eval returns 0.

One notable use is for indirect variable mutation. See Indirect Variable Access for Associative Arrays.