这是我的代码。
#!/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
答案 0 :(得分:2)
您需要删除=
符号
x=$(curl www.google.com)