Skip to content

Commit

Permalink
Update sai_lib
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorchu committed Jul 12, 2014
1 parent 1008102 commit 289c01d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sai_lib
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ shopt -s nullglob

say() {
tput setaf 4
echo -n " :: "
echo -n ":: "
tput sgr0
echo "$1"
}

# save ans to $2
ask() {
tput setaf 3
echo -n " -> "
echo -n "-> "
tput sgr0
echo -n "$1 "
read -r $2
read -r "$2"
}

yell() {
tput setaf 1
echo -n " !! "
echo -n "!! "
tput sgr0
echo "$1"
exit
Expand Down

0 comments on commit 289c01d

Please sign in to comment.