Created
July 15, 2012 20:00
-
-
Save nerevar/3118396 to your computer and use it in GitHub Desktop.
Draws a colored horizontal line and clear screen of terminal
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
# рисует горизонтальную линию и очищает экран | |
c() | |
{ | |
SEPARATOR="-" | |
WIDTH=$(tput cols); | |
echo -e "\033[$(($RANDOM % 7 + 31))m" | |
for ((i=0; i<$WIDTH; i++)); do echo -n $SEPARATOR ; done | |
clear | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment