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
- Windows
- ansible
- miniconda
- application security
- docker
- Kibana server is not ready yet
- ELASTIC
- x-pack
- ssh key 배포
- Elasticsearch
- XCP-ng
- Proxy
- freebsd
- 로그인불가
- macos
- centos 8
- GitLab
- bash
- hardening
- endpoint security
- G-suite
- elastic stack
- xe guest utilities
- proxycfg
- PlayBook
- 한글가이드
- pfsense
- 보안양파
- Kibana
Archives
- Today
- Total
선 밖에 선 자유인
bash 에서 파일 라인 읽기 본문
한줄씩 읽기
#!/bin/bash
exec < $1
while read line
do
echo $line
done
---------------------------------------
#!/bin/bash
while read line
do
echo $line
done < aaa.txt
참고 :
http://www.dreamy.pe.kr/zbxe/CodeClip/3765968
Comments