【elasticsearch索引清理脚本shell】教程文章相关的互联网学习教程文章

elasticsearch索引清理脚本shell

es-index-clear.sh: #!/bin/bash#----------------------------------------------# Module: es-index-clear# Comment: To clear elastic-index on interval!# Date: 2018/10/5# Author: aodi# Version: 1.0#---------------------------------------------- #循环清理过期索引while truedo read -p "请问您要退出还是继续清理索引? 退出[q],清理[c] => " if [ $REPLY == "c" ] then read -p "请问你要清理x天前...