Last active
July 27, 2018 12:57
-
-
Save yookoala/d7429c45cf2559ba64b8753a975592f3 to your computer and use it in GitHub Desktop.
A very simple bash script for fun.
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 | |
# say something, with timestamp, every 5 seconds | |
while echo "$@"; do | |
sleep 5s | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment