Difference between revisions of "Parallel"

From wikieduonline
Jump to navigation Jump to search
(Created page with "<code>parallel</code><ref>https://www.gnu.org/software/parallel/man.html</ref> allows the user to execute shell scripts or commands in parallel. ==...")
 
Line 9: Line 9:
 
=== Intermediate ===
 
=== Intermediate ===
 
# Review different parallel options such as: <code>--keep-order</code> or <code>-k</code> which keep order in the output. Do not affect order of execution.
 
# Review different parallel options such as: <code>--keep-order</code> or <code>-k</code> which keep order in the output. Do not affect order of execution.
# Update all your [[version Control/Git|git]] repositories in a directory in macOS using parallel: <code>ls | parallel git -C {} fetch </code>
+
# Update all your <code>[[git]]</code> repositories in a directory in macOS using parallel: <code>ls | parallel git -C {} fetch </code>
  
 
== See also ==
 
== See also ==

Revision as of 07:44, 26 December 2019

parallel[1] allows the user to execute shell scripts or commands in parallel.

Activities

Basic

  1. /Execute a command in parallel by ssh/ in MACHINE1 and MACHINE2 using parallel
  2. Read stackexchange questions about gnu-parallel: https://unix.stackexchange.com/questions/tagged/gnu-parallel?tab=votes&pagesize=50
  3. Install parallel in macOS: brew install parallel can conflict with brew install moreutils

Intermediate

  1. Review different parallel options such as: --keep-order or -k which keep order in the output. Do not affect order of execution.
  2. Update all your git repositories in a directory in macOS using parallel: ls | parallel git -C {} fetch

See also

Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.

Source: https://en.wikiversity.org/wiki/Linux/Basic_commands/parallel

Advertising: