mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 12:32:09 +03:00
[bash/en] Add info on background commands with & (#4120)
* Add info on background commands with & * Update bash.html.markdown
This commit is contained in:
parent
3b2974ba31
commit
5f118e3f61
@ -179,6 +179,19 @@ echo "Always executed" && echo "Only executed if first command does NOT fail"
|
||||
# => Always executed
|
||||
# => Only executed if first command does NOT fail
|
||||
|
||||
# A single ampersand & after a command runs it in the background. A background command's
|
||||
# output is printed to the terminal, but it cannot read from the input.
|
||||
sleep 30 &
|
||||
# List background jobs
|
||||
jobs # => [1]+ Running sleep 30 &
|
||||
# Bring the background job to the foreground
|
||||
fg
|
||||
# Ctrl-C to kill the process, or Ctrl-Z to pause it
|
||||
# Resume a background process after it has been paused with Ctrl-Z
|
||||
bg
|
||||
# Kill job number 2
|
||||
kill %2
|
||||
# %1, %2, etc. can be used for fg and bg as well
|
||||
|
||||
# To use && and || with if statements, you need multiple pairs of square brackets:
|
||||
if [ "$Name" == "Steve" ] && [ "$Age" -eq 15 ]
|
||||
|
Loading…
Reference in New Issue
Block a user