Translations:GNU Parallel/11/en: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
m (FuzzyBot moved page Translations:Gnu Parallel/11/en to Translations:GNU Parallel/11/en without leaving a redirect: Part of translatable page "Gnu Parallel".)
(Importing a new version from external source)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Keeping Track of Completed and Failed Commands, and Restart Capabilities==
==Keeping Track of Completed and Failed Commands, and Restart Capabilities==
You can tell Gnu Parallel to keep track of which commands have completed by using the <tt>--joblog JOBLOGFILE</tt> argument. The file JOBLOGFILE will contain the list of completed commands, their start times, durations, hosts, and exit values.  E.g.
You can tell GNU Parallel to keep track of which commands have completed by using the <tt>--joblog JOBLOGFILE</tt> argument. The file JOBLOGFILE will contain the list of completed commands, their start times, durations, hosts, and exit values.  For example,
{{Command|ls *.txt {{!}} parallel --joblog gzip.log gzip {{(}}{{)}} }}
{{Command|ls *.txt {{!}} parallel --joblog gzip.log gzip {{(}}{{)}} }}

Latest revision as of 21:56, 2 April 2020

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (GNU Parallel)
==Keeping Track of Completed and Failed Commands, and Restart Capabilities==
You can tell GNU Parallel to keep track of which commands have completed by using the <tt>--joblog JOBLOGFILE</tt> argument. The file JOBLOGFILE will contain the list of completed commands, their start times, durations, hosts, and exit values.  For example,
{{Command|ls *.txt {{!}} parallel --joblog gzip.log gzip {{(}}{{)}} }}

Keeping Track of Completed and Failed Commands, and Restart Capabilities

You can tell GNU Parallel to keep track of which commands have completed by using the --joblog JOBLOGFILE argument. The file JOBLOGFILE will contain the list of completed commands, their start times, durations, hosts, and exit values. For example,

Question.png
[name@server ~]$ ls *.txt | parallel --joblog gzip.log gzip {}