Bash中的eval命令

主要参考:What is the “eval” command in bash

简而言之,它让一个输入行被解析两次。
它是如何做到这一点的?
shell有一系列步骤来解析一行命令。
在这里插入图片描述

  1. shell读取它的输入
  2. shell将输入放入token:分为运算符和单词
  3. The shell parses the input into simple and compound commands.
  4. The shell performs various expansions (separately) …
  5. The shell performs redirection and removes redirection operators and their operands from the parameter list.
  6. The shell executes a function, built-in, executable file, or script …
  7. The shell optionally waits for the command to complete and collects the exit status.
    在第六步,eval导致被处理好的命令行重新被发送到第一步。
    $(…)这个命令将小括号内的命令在新的进程中执行,即继承了当前shell变量和设置的子shell,并接收它的输出。

它会接收参数并且根据这个参数构造一个命令,这个命令将会被shell执行。
例子:

foo=10 x=foo    # 1
y='$'$x         # 2
echo $y         # 3
$foo
eval y='$'$x    # 5
echo $y         # 6
10

在第一行,定义 foo的值为10,定义x的值为foo
第二行,定义了y
第三行命令,显示了y的值为字符串$foo
总之前三行命令结束后,各个变量的值如下所示。
在这里插入图片描述
现在我们用eval命令重复这个分配过程。它首先会把$x翻译为字符串foo.现在我们有了表达式: y=$foo,这会给y赋值为10.
现在运行echo $y的结果就是10.文章来源地址https://uudwc.com/A/EBJw0

原文地址:https://blog.csdn.net/huaiyingdetective/article/details/131486121

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

h
上一篇 2023年07月07日 17:15
群晖折腾记1—群晖NAS使用docker中的ddns-go,DDNS阿里云ali实现Ipv6访问
下一篇 2023年07月07日 17:16