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
| bind "\e[1;5D" vi-prev-word | |
| bind "\e[1;5C" vi-next-word |
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
| Bus 002 Device 012: ID 046d:c52b Logitech, Inc. Unifying Receiver | |
| Device Descriptor: | |
| bLength 18 | |
| bDescriptorType 1 | |
| bcdUSB 2.00 | |
| bDeviceClass 0 (Defined at Interface level) | |
| bDeviceSubClass 0 | |
| bDeviceProtocol 0 | |
| bMaxPacketSize0 32 | |
| idVendor 0x046d Logitech, Inc. |
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
| redis-del() { | |
| redis-cli KEYS "$1" | awk '{ print "\"" $1 "\"" } ' | xargs redis-cli "DEL" | |
| } | |
| redis-get() { | |
| redis-cli KEYS "$1" | awk '{ print "\"" $1 "\"" } ' | xargs -n 1 redis-cli "GET" | |
| } |
NewerOlder