write eval
This commit is contained in:
parent
72d624ec95
commit
e0e403fc96
22
basics/eval.md
Normal file
22
basics/eval.md
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
title: "eval"
|
||||||
|
tags: [ "basics" ]
|
||||||
|
---
|
||||||
|
|
||||||
|
Compose a statement for execution.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
x='echo $y'
|
||||||
|
echo $x
|
||||||
|
y=dragon
|
||||||
|
eval "$x"
|
||||||
|
```
|
||||||
|
|
||||||
|
The results remain in the current shell, unlike sub-shells.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
b=basilisk
|
||||||
|
sh -c 'echo $b'
|
||||||
|
eval "g=goblin"
|
||||||
|
echo $g
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user