Created
August 5, 2020 18:02
-
-
Save cmbaughman/6e96856d8802b5aa0e4ae5e4046f756d to your computer and use it in GitHub Desktop.
Generate White Noise
This file contains hidden or 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
#!/bin/bash | |
while true; | |
do | |
printf "$(awk -v c="$(tput cols)" -v s="$RANDOM" 'BEGIN{srand(s);while(--c>=0){printf("\xe2\x96\\%s",sprintf("%o",150+int(10*rand())));}}')"; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment