BASH:如何将网站返回的值存储到变量中

时间:2014-08-27 00:33:16

标签: bash shell

这是我的代码。

#!/bin/bash
x = $(curl www.google.com)

这是运行名为test.sh

的文件后的错误
MacBook-Pro:files user1$ ./test.sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 19091    0 19091    0     0  58596      0 --:--:-- --:--:-- --:--:-- 58561
./test.sh: line 2: x: command not found

1 个答案:

答案 0 :(得分:2)

您需要删除=符号

之前和之后的空格
x=$(curl www.google.com)