Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- xe guest utilities
- Kibana
- pfsense
- freebsd
- Proxy
- macos
- miniconda
- GitLab
- x-pack
- proxycfg
- application security
- ansible
- Kibana server is not ready yet
- 보안양파
- centos 8
- ssh key 배포
- Windows
- 로그인불가
- G-suite
- bash
- hardening
- ELASTIC
- endpoint security
- elastic stack
- XCP-ng
- Elasticsearch
- docker
- 한글가이드
- PlayBook
Archives
- Today
- Total
선 밖에 선 자유인
bash 문자열 포함 본문
A = "홍길동"
B = "의적 홍길동"
A가 B문자열에 포함되는지 확인 시
if [[ "$A" =~ "$B" ]]; then
<action>
fi
or
if [[ "$A" == *"$B"* ]]; then
<action>
fi
Comments