Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Last active October 8, 2016 13:23
Show Gist options
  • Save tkuchiki/61fb1a3e3b802337b0ab62ad01832c03 to your computer and use it in GitHub Desktop.
Save tkuchiki/61fb1a3e3b802337b0ab62ad01832c03 to your computer and use it in GitHub Desktop.
memcached の key 一覧を出力する
for item in $(echo "stats items" | nc localhost 11211 | grep number | tr ':' ' ' | awk '{print $3"_"$5}'); do echo "stats cachedump $(echo $item | awk -F '_' '{print $1, $2}')"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment