Skip to content

Instantly share code, notes, and snippets.

@JBlond
Created April 5, 2019 13:24
Show Gist options
  • Save JBlond/cdb2a4fd61c99bf2d4f0f330104dc452 to your computer and use it in GitHub Desktop.
Save JBlond/cdb2a4fd61c99bf2d4f0f330104dc452 to your computer and use it in GitHub Desktop.
Unide code ramdom in bash
#!/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