Created
November 18, 2015 14:19
-
-
Save ndelitski/fd47062c0ba0ac068f55 to your computer and use it in GitHub Desktop.
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 | |
| c=0; | |
| while true; | |
| let c=c+1; | |
| redis-cli -h redis set "/conf/hello/count" "$c"; | |
| sleep 10; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment