fix(user/bkots):Only use 25% of available CPUs
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Wed, 27 Jul 2022 01:48:36 +0000 (01:48 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Wed, 27 Jul 2022 01:48:36 +0000 (01:48 +0000)
user/bkots

index 5ffa4f44223db24ac455f50774546e03c6bfddcf..baffb0886d3dc152fffc81b1aec729d31a57b952 100755 (executable)
@@ -200,7 +200,7 @@ showVersion() {
     vbm "DEBUG:showVersion function called."
 
     cat <<'EOF'
-bkots 1.0.2
+bkots 1.0.3
 Copyright (C) 2022 Steven Baltakatei Sandoval
 License GPLv3: GNU GPL version 3
 This is free software; you are free to change and redistribute it.
@@ -716,7 +716,7 @@ main() {
 
     ## Run commands
     #yell "DEBUG:commands:$(printf "%s\n" "${commands[@]}")";
-    printf "%s\n" "${commands[@]}" | parallel --group;
+    printf "%s\n" "${commands[@]}" | parallel --group --jobs 25%;
 
 }; # main program