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

From Alliance Doc
Jump to navigation Jump to search
(Importing a new version from external source)
 
m (FuzzyBot moved page Translations:Gnu Parallel/3/en to Translations:GNU Parallel/3/en without leaving a redirect: Part of translatable page "Gnu Parallel".)
 
(No difference)

Latest revision as of 13:35, 28 August 2017

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)
== Basic Usage ==
Parallel uses curly brackets <tt>{}</tt> as parameters for the command to be run. For example, to run <tt>gzip</tt> on all the text files in a directory, you can execute
{{Command|ls *.txt {{!}} parallel gzip {{(}}{{)}} }}

Basic Usage

Parallel uses curly brackets {} as parameters for the command to be run. For example, to run gzip on all the text files in a directory, you can execute

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