Advertisement
widhisec

matrix

Oct 25th, 2023
695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | Cybersecurity | 0 0
  1. #!/bin/bash
  2.  
  3. characters=(a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9)
  4.  
  5. tput setaf 5
  6. tput setab 0
  7.  
  8. while true; do
  9.   clear
  10.   character=${characters[$((RANDOM % ${#characters[@]}))]}
  11.   printf "\e[$((RANDOM % 80))G$character"
  12.   sleep 0.01
  13. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement