grep -rnRi 指定的内容 * | awk -F":" '{print $1}' 解释: grep 查找文件内容 -r 表示递归查找 -n 表示显示行号 -R 表示查找所有文件包含子目录 -i 表示忽略大小写 * 代表所有文件 | 管道符 awk 截取命令 -F 表示指定分隔符 ":" 表示本 Read More
posted @ 2018-03-08 22:06 秦先生的客栈 Views(2178) Comments(0) Diggs(0) Edit
GET /company/employee/_search { "query": { "constant_score": { "filter": { "range": { "age": { "gte": 30 } } } } }, "sort": [{ "join_date": { "order": Read More
posted @ 2018-03-08 21:31 秦先生的客栈 Views(438) Comments(0) Diggs(0) Edit
GET /test_index/test_type/_validate/query?explain{ "query": { "math": { "test_field": "test" } }} { "valid": false, "error": "org.elasticsearch.common Read More
posted @ 2018-03-08 21:30 秦先生的客栈 Views(169) Comments(0) Diggs(0) Edit
1、filter与query示例PUT /company/employee/2{ "address": { "country": "china", "province": "jiangsu", "city": "nanjing" }, "name": "tom", "age": 30, "join_ Read More
posted @ 2018-03-08 21:27 秦先生的客栈 Views(801) Comments(0) Diggs(0) Edit