Created
September 24, 2017 19:01
-
-
Save erdii/01864e9b10f7ae3267307af8e41157c3 to your computer and use it in GitHub Desktop.
build and install only redis-cli
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/sh | |
| cd $(mktemp -d) && \ | |
| wget http://download.redis.io/redis-stable.tar.gz && \ | |
| tar -xvzf redis-stable.tar.gz && \ | |
| cd redis-stable && \ | |
| make && \ | |
| sudo cp src/redis-cli /usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment