Last active
August 5, 2016 16:22
-
-
Save e7d/3acc2ed046e422a171d4 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
run() { | |
echo -en "# " | |
($@ 2>&1; echo $?>~/_$$) | log | |
V=$(($(cat ~/_L$$;rm -f ~/_L$$) / $(tput cols))) | |
if test 0 -eq $(cat ~/_$$;rm -f ~/_$$); then | |
echo -e "\r\033["$V"A\033[1;32m✓\033[0m\r\033["$V"B" | |
else | |
echo -e "\r\033["$V"A\033[1;31m✕\033[0m\r\033["$V"B" | |
fi | |
} | |
log() { | |
L=0 | |
while read line; do | |
echo -n "." | |
L=$((L + 1)) | |
done | |
echo $L >~/_L$$ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment