find . -type f \( -name '*.java' -o -name '*.yml' \)
'분류 전체보기'에 해당되는 글 691건
$ cat f.sh
curl -X POST http://127.0.0.1:8080/goods/search -H 'Content-Type: application/json' -d '
{
"stringdate":"2021-05-28",
"ordercount": 2,
"itemid": 1234
}
'
파일 > 옵션 > 언어교정 > 자동 고침 옵션 > 한/영 자동 고침
IE 에서 안됨 (firefox 등에서 사용)
https:// ... .elastic.co/login?redirectTo=%2Fhome
Kibana 클릭 (왼쪽메뉴)
Open 클릭
새창
(좌측상단) 햄버거 모양 메뉴 클릭
Management 항목에서 dev tools 클릭
왼쪽 창 상단 오른 쪽 끝에 있는 ▷ 클릭하면 실행 됨
[🌎elasticsearch] Elasticsearch CRUD 기본사용법 (feat. Kibana)
Elasticsearch 가이드북 ✈Elasticsearch 홈페이지 가기 ✈ElasticSearch 의 search 와 Bulk 기능은 이후 포스트에서 다루겠습니다.CreateReadUpdateDeleteElasticSearch 에서는 REST APIs 안의 Docu
velog.io
https://www.geeksforgeeks.org/curl-command-in-linux-with-examples/?ref=leftbar-rightbar
$ tee --help
Usage: tee [OPTION]... [FILE]...
Copy standard input to each FILE, and also to standard output.
-a, --append append to the given FILEs, do not overwrite
-i, --ignore-interrupts ignore interrupt signals
-p diagnose errors writing to non pipes
--output-error[=MODE] set behavior on write error. See MODE below
--help display this help and exit
--version output version information and exit
MODE determines behavior with write errors on the outputs:
'warn' diagnose errors writing to any output
'warn-nopipe' diagnose errors writing to any output not a pipe
'exit' exit on error writing to any output
'exit-nopipe' exit on error writing to any output not a pipe
The default MODE for the -p option is 'warn-nopipe'.
The default operation when --output-error is not specified, is to
exit immediately on error writing to a pipe, and diagnose errors
writing to non pipe outputs.
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
Report any translation bugs to <https://translationproject.org/team/>
Full documentation <https://www.gnu.org/software/coreutils/tee>
or available locally via: info '(coreutils) tee invocation'
$ cat tmp
a
bb
bb
ccc
ccc
ccc
$ uniq -c tmp
1 a
2 bb
3 ccc