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
- ELASTIC
- proxycfg
- freebsd
- macos
- 보안양파
- Kibana server is not ready yet
- application security
- pfsense
- docker
- bash
- elastic stack
- Windows
- PlayBook
- hardening
- miniconda
- xe guest utilities
- XCP-ng
- centos 8
- x-pack
- endpoint security
- G-suite
- ssh key 배포
- Kibana
- Proxy
- 로그인불가
- GitLab
- Elasticsearch
- 한글가이드
- ansible
Archives
- Today
- Total
선 밖에 선 자유인
Bash 라인 단위 파일 읽기 본문
exec < $1
while read line
do
echo $line
done
while read line
do
echo $line
done < $1
- 컬럼 별로 읽을 때 (test.txt)
A B C D E
F G H I J
while read A B C
do
echo "${A},${B},${C}"
done < test.txt
Comments