Created
April 5, 2019 13:24
-
-
Save JBlond/cdb2a4fd61c99bf2d4f0f330104dc452 to your computer and use it in GitHub Desktop.
Unide code ramdom in bash
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 | |
rand=$(shuf -i 2600-2700 -n 1) | |
echo -n -e ' \u'$rand | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment