Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对 shell 脚本很陌生。&我对shell 脚本的用途有一个基本的疑问?那是在做这样的事情:
&
commands arg &
等待提供更多输入。但它的确切用途是什么?我应该如何在现实世界中使用它?
当您在那里使用它时,它会commands arg在后台运行,与您的键盘断开连接,并且 shell 会立即询问您的下一个命令。
commands arg
至于现实世界,当我有一个命令需要很长时间才能运行但不需要我的任何输入并将其所有输出放入文件时,我会使用它,例如
# walk through the whole filesystem looking for a particular filename find / -name 'obscure.filename' -print > /tmp/found-it &