parallel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Question on optimizing GNU Parallel with multiple lines of search pa


From: René Genz
Subject: Re: Question on optimizing GNU Parallel with multiple lines of search parameters
Date: Thu, 18 Aug 2016 08:37:30 +0200
User-agent: Mozilla/5.0 (X11; Linux i686; rv:45.0) Gecko/20100101 Thunderbird/45.2.0

The '&' control operator might be what you are looking for.

Excerpt from `man 1 bash`:
SHELL GRAMMAR
   Lists
       If  a  command  is terminated by the control operator &, the shell exe‐
       cutes the command in the background in a subshell.  The shell does  not
       wait  for  the command to finish ...

try:
(<command> | parallel <command> | parallel <command> >> file) &


If you work on a remote machine execute in a `screen` session.
`nohup <script> &` is another solution to disconnects.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]