Skip to content

Instantly share code, notes, and snippets.

@e7d
Last active August 5, 2016 16:22
Show Gist options
  • Save e7d/3acc2ed046e422a171d4 to your computer and use it in GitHub Desktop.
Save e7d/3acc2ed046e422a171d4 to your computer and use it in GitHub Desktop.
#!/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