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
counter=60; clear; while ((counter >= 0)); do echo $counter | figlet | lolcat; sleep 1; ((counter--)); done; echo Time is up | figlet | lolcat; notify-send 'Guess What?' 'Time is up'; |
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
#! /usr/bin/bash | |
branch=$(git rev-parse --abbrev-ref HEAD) | |
commit=$(git rev-list -1 --before="$1" "$branch") | |
shift | |
git diff --name-status "$commit" HEAD -- "$@" |