etcd-dump-logs: add decoder support

This commit is contained in:
Wenjia Zhang
2018-05-31 13:45:37 -07:00
committed by Gyuho Lee
parent 6d773ffe96
commit 29121a8cee
8 changed files with 331 additions and 22 deletions

View File

@ -0,0 +1,5 @@
#!/bin/bash
while read line
do
echo "$line" | tr 1234567890 abcdefghij
done < "${1:-/dev/stdin}"