Search code examples
bashunixjob-control

How to create a job using only default bash commands?


So, I have started studying UNIX systems about a month ago and now I have a basic question about job control

How can I create a job, that will contain several processes, using only default bash commands?


Solution

  • echo | ping google.com &
    

    Was fine example, because both of these processes work independently and only require pipe symbol (|) to work in sync in the background