{"id":20925846,"url":"https://github.com/prabdeb/parallelshellexecution","last_synced_at":"2026-05-18T17:05:26.260Z","repository":{"id":142895860,"uuid":"110284333","full_name":"prabdeb/ParallelShellExecution","owner":"prabdeb","description":"For executing any Linux Commands in Parallel - A Docker/Perl based setup","archived":false,"fork":false,"pushed_at":"2018-08-06T05:59:08.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-11T06:39:11.072Z","etag":null,"topics":["command-line","concurrency","multitasking","parallel","perl","shell"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/prabdeb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-10T19:23:21.000Z","updated_at":"2018-09-02T19:00:44.000Z","dependencies_parsed_at":"2023-07-26T16:00:37.769Z","dependency_job_id":null,"html_url":"https://github.com/prabdeb/ParallelShellExecution","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/prabdeb/ParallelShellExecution","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabdeb%2FParallelShellExecution","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabdeb%2FParallelShellExecution/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabdeb%2FParallelShellExecution/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabdeb%2FParallelShellExecution/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/prabdeb","download_url":"https://codeload.github.com/prabdeb/ParallelShellExecution/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/prabdeb%2FParallelShellExecution/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33184769,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line","concurrency","multitasking","parallel","perl","shell"],"created_at":"2024-11-18T20:35:25.520Z","updated_at":"2026-05-18T17:05:26.224Z","avatar_url":"https://github.com/prabdeb.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Parallel Shell Execution\n\nFor executing any Linux Commands in Parallel with proper log management and error handling - A Perl based setup\n\n## How to use\n\nThis utility can be placed in any location in a linux box and can be executed from there.\n\n```sh\n$ git clone https://github.com/prabdeb/ParallelShellExecution.git\n$ cd ParallelShellExecution\n$ ./parallel.pl\n\nUSAGE: ./parallel.pl -l [Log Directory] -f [File Containing All Commands] -c [Commands Seprated by (,)]\n\n-l : Log Directory where all logs will be dumped, default $(pwd)\n-f : File Containing All Commands, separated by new line,\n     to provide unique log file name to command, appaned -\u003e commandLogFileName end of each command,\n     else it will create the log with command sequence number\n-c : Provide all the commands separated by (,) useful in case of few small commands\n-m : Maximum Number of Process, which should be executed parallel, default and highest: 5\n-t : Specify Timeout in second, example 1800 for 30 Mintues, default: 0 (means no timeout)\n```\n\n## Use with Docker\n\nTo execute as docker container, follow - \n\n```sh\n$ docker pull prabdeb/parallel\n$ docker run prabdeb/parallel -c 'echo \"I am command 1\",echo \"I am command 2\"'\n\n20180806 10:54:42 - Starting Parallel Execution of Commands below with Maximum Parallel Process of 5 -\n20180806 10:54:42 - echo \"I am command 1\"\n20180806 10:54:42 - echo \"I am command 2\"\n20180806 10:54:42 - =================== START EXECUTION =======================\n20180806 10:54:42 - Executing echo \"I am command 1\"\n20180806 10:54:42 - Executing echo \"I am command 2\"\n20180806 10:54:42 - I am command 1\n20180806 10:54:42 - I am command 2\n20180806 10:54:42 - Successfully executed echo \"I am command 1\"\n20180806 10:54:42 - Successfully executed echo \"I am command 2\"\n20180806 10:54:42 - -\n20180806 10:54:42 - -\n20180806 10:54:42 - =================== FAILURE SUMMARY =======================\n20180806 10:54:42 - =================== EXIT DICISSION ========================\n20180806 10:54:42 - Successfully executed All the Commands\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprabdeb%2Fparallelshellexecution","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprabdeb%2Fparallelshellexecution","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprabdeb%2Fparallelshellexecution/lists"}