```sh
var = replace text from to
```
Returns new value of text after replacing all from values to the provided to values.
* **
The updated text.
```sh
text = set "my large text value with lots of text"
updated = replace ${text} text stuff
assert_eq ${updated} "my large stuff value with lots of stuff"
```