Last active
November 14, 2019 06:08
-
-
Save Phoenix-Effect/74a11dc820eb8adcc69015aadd7c91f2 to your computer and use it in GitHub Desktop.
This script generators a random number in bash and saves it to a variable.
This file contains 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 | |
NUM=$(shuf -i 100-300 -n 1) | |
echo $NUM |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment