通过bash读取输入[关闭]


Answers:


2
  1. 从文件输入:运行脚本(带.sh扩展名的文件)
  2. 从字符串输入: bash -c "ls -l"
  3. 来自终端的输入:嗯,任何非图形Linux会话。

如果您使用的是具有图形环境的Linux,请按Ctrl+ Alt+ F1Ctrl+ Alt+ F2,您将看到我的意思。(通过Ctrl+ Alt+ 循环恢复F*直到你回到图形上)


如果我是对的,在最后的第三种情况下(单独使用bash命令),我们创建一个子shell,其中未来的命令可以被删除?
Mulligan

4

嗯,这很简单:

bash hello.sh                     # From a file.
bash -c 'echo "Hello, world!"'    # From a string.
bash                              # From the terminal.

干杯!


如果我是对的,在最后的第三种情况下(单独使用bash命令),我们创建一个子shell,其中未来的命令可以被删除?
Mulligan
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.