Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- function getColor(){
- rgb=$(printf "%02x%02x%02x" $((RANDOM%256)) $((RANDOM%256)) $((RANDOM%256)))
- echo $rgb
- }
- getColor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement