Skip to content

Commit

Permalink
add parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
sschlesier committed Sep 1, 2021
1 parent e56d7d0 commit 555bd74
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions content/docs/parallel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: "parallel"
weight: 1
# geekdocFlatSection: false
# geekdocToc: 6
# geekdocHidden: false
---

Easily execute commands per file

parallel execution of command on each txt file
```bash
parallel commmand {} ::: *.txt
```

Execute command a single instance at a time -j 1
```bash
parallel -j 1 commmand {} ::: *.txt
```

0 comments on commit 555bd74

Please sign in to comment.