Created
April 18, 2021 10:52
-
-
Save rawiriblundell/c3a878050d9bc3fb9227c477021821d7 to your computer and use it in GitHub Desktop.
A function for throttling stdout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Throttle stdout | |
throttle() { | |
# Check that stdin isn't empty | |
if [[ -t 0 ]]; then | |
printf -- '%s\n' "Usage: pipe | to | throttle [n]" "" | |
printf -- '\t%s\n' "Increment line by line through the output of other commands" "" \ | |
"Delay between each increment can be defined. Default is 1 second." | |
return 0 | |
fi | |
# Default the sleep time to 1 second | |
sleepTime="${1:-1}" | |
# Now we output line by line with a sleep in the middle | |
while read -r; do | |
printf -- '%s\n' "${REPLY}" | |
sleep "${sleepTime}" 2>/dev/null || sleep 1 | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment