can not run bash -c echo
时间: 2024-03-21 21:39:02 浏览: 62
bash-timeout:Bash编写的超时功能
It seems that there is an issue with the syntax of the command. The correct syntax for running a command using bash is:
```
bash -c "command"
```
In this case, the command "echo" should be enclosed in quotes:
```
bash -c "echo"
```
Alternatively, you can simply run the command without using bash:
```
echo
```
I hope this helps! Let me know if you have any other questions.
阅读全文