Skip to content

Instantly share code, notes, and snippets.

@fhdalikhan
Forked from espaciomore/watch.sh
Last active March 3, 2021 10:09
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 fhdalikhan/674823d7341b1d7ddc3c75fdb2eb9717 to your computer and use it in GitHub Desktop.
Save fhdalikhan/674823d7341b1d7ddc3c75fdb2eb9717 to your computer and use it in GitHub Desktop.
Watch command for Git Bash
#!/bin/bash
ARGS="${@}"
clear;
while(true); do
clear
OUTPUT=`$ARGS`
echo -e "${OUTPUT[@]}"
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment