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 |
Tags
- docker
- proxycfg
- PlayBook
- freebsd
- pfsense
- elastic stack
- x-pack
- 한글가이드
- GitLab
- Proxy
- macos
- ansible
- XCP-ng
- Windows
- hardening
- endpoint security
- 보안양파
- Elasticsearch
- G-suite
- ssh key 배포
- Kibana
- miniconda
- centos 8
- xe guest utilities
- bash
- ELASTIC
- 로그인불가
- application security
- Kibana server is not ready yet
Archives
- Today
- Total
선 밖에 선 자유인
Bash split 본문
xxx.xls
bbb.xls
...
파일명과 확장자 split in bash
LIST=`ls`
# convert xls to csv
for i in $LIST
do
IFS='. ' read -a array <<< $i
LINE1=${array[0]}
echo $LINE1
done
Comments