Skip to content

Instantly share code, notes, and snippets.

@smuuf
Last active October 10, 2017 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smuuf/2f7ce974f0a1a9ea3c842c88ac066521 to your computer and use it in GitHub Desktop.
Save smuuf/2f7ce974f0a1a9ea3c842c88ac066521 to your computer and use it in GitHub Desktop.
function lines_as_progress {
echo -ne "█ ("$@") "
stdbuf --output=L --error=L "$@" 2>&1 |
while IFS= read -r line
do
printf "."
done
printf " Done"
echo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment