Advertisement
Guest User

d love

a guest
Feb 16th, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.70 KB | None | 0 0
  1. b='\E[37;40m'
  2. r='\E[37;41m'
  3.  
  4. d_sign ()
  5. {
  6.  echo -e "$b              d."  
  7. };
  8.  
  9. small_heart ()
  10. {
  11.  echo -e "$b     $r   $b  $r   "
  12.  echo -e "$b   $r            "
  13.  echo -e "$b    $r          "
  14.  echo -e "$b     $r        "
  15.  echo -e "$b      $r      "
  16.  echo -e "$b        $r  "  
  17.  echo -e "$b"
  18.  d_sign
  19. };
  20.  
  21. big_heart ()
  22. {
  23.  echo -e "$b     $r   $b  $r   "   
  24.  echo -e "$b   $r            "
  25.  echo -e "$b  $r              "
  26.  echo -e "$b   $r            "
  27.  echo -e "$b    $r          "
  28.  echo -e "$b     $r        "
  29.  echo -e "$b       $r    " 
  30.  echo -e "$b"  
  31.  d_sign
  32. };
  33.  
  34. while clear
  35.     do
  36.         tput cup 3 0
  37.         small_heart
  38.         sleep 0.4
  39.         tput cup 2 0
  40.         big_heart
  41.         sleep 0.2
  42.     done
  43.    
  44. tput sgr0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement