1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/osx/eval.md

12 lines
218 B
Markdown
Raw Normal View History

2019-02-26 11:12:32 +08:00
# eval
2019-10-18 11:30:29 +08:00
> 在当前 shell 中以单个命令的形式执行参数,并返回其结果.
2019-02-26 11:12:32 +08:00
- 使用 'foo' 做为参数调用 `echo`:
`eval "{{echo foo}}"`
2019-10-19 14:12:27 +08:00
- 在当前 shell 程序中设置变量:
2019-02-26 11:12:32 +08:00
`eval "{{foo=bar}}"`