Last active
October 10, 2017 10:04
-
-
Save smuuf/2f7ce974f0a1a9ea3c842c88ac066521 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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