Skip to content

Instantly share code, notes, and snippets.

@winstxnhdw
Last active January 29, 2024 09:33
Show Gist options
  • Save winstxnhdw/44e6489be1734f144b860fa23142645f to your computer and use it in GitHub Desktop.
Save winstxnhdw/44e6489be1734f144b860fa23142645f to your computer and use it in GitHub Desktop.
A simple POSIX-compatible shell script to indefinitely execute short-lived functions with GNU Parallel and yes.
func() {
echo "Hello world!"
}
export -f func
yes '' | parallel -j 10 --delay 0auto func
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment