Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-meta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-meta
Commits
b09f45f5
Commit
b09f45f5
authored
8 months ago
by
Ole Langbehn
Browse files
Options
Downloads
Patches
Plain Diff
use a parallelism of # threads for forall-git
parent
84bd5814
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
helpers/forall-git
+1
-1
1 addition, 1 deletion
helpers/forall-git
with
1 addition
and
1 deletion
helpers/forall-git
+
1
−
1
View file @
b09f45f5
...
@@ -9,7 +9,7 @@ NC='\033[m'
...
@@ -9,7 +9,7 @@ NC='\033[m'
if
which parallel
>
/dev/null
;
then
if
which parallel
>
/dev/null
;
then
find
-L
.
-maxdepth
3
-name
.git
-type
d | parallel
-j
10
"cd {//}; echo -ne '
$COLOR
'; pwd; echo -ne '
$NC
';
$@
"
find
-L
.
-maxdepth
3
-name
.git
-type
d | parallel
-j
$(
nproc
--all
)
"cd {//}; echo -ne '
$COLOR
'; pwd; echo -ne '
$NC
';
$@
"
else
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment