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
- 자바스크립트
- DynamoDB
- Kubernetes
- Await
- 구조분해 할당
- JavaScript
- vgw
- docker
- docker swarm
- transit gateway
- cognito
- CloudFormation
- api gateway
- Proxy Resource
- elasticsearch
- 비구조화 할당
- VPC
- grafana
- Site-to-Site VPN
- Service
- Custom Resource
- Endpoints
- 옵셔널 체이닝
- AWS
- On-Premise
- 단축 평가
- prometheus
- null 병합 연산자
- 온프레미스
- optional chaining
Archives
- Today
- Total
만자의 개발일지
[Linux] 파이프라인(Pipeline) 본문
파이프라인(Pipeline)
파이프라인은 프로세스간 작동하는 방식으로 '|' 기호를 사용하여 '|' 를 기준으로 왼쪽 커맨드의 표준 출력(Standard Ouput)을 오른쪽 커맨드의 표준 입력으로 사용합니다.
# ls -al | grep lib
위와 같이 명령어를 입력하면 ls -al 의 표준 출력을 중에서 lib 라는 문자열을 가진 결과만 가져와 출력하겠다는 내용입니다.
'Linux' 카테고리의 다른 글
[Linux] 인터넷 연결 하는 방법 (0) | 2021.11.02 |
---|---|
[Linux] 파일 찾는 법(locate, find,whereis) (0) | 2021.11.01 |
[Linux] IO Redirection (0) | 2021.10.29 |
[Linux] 리눅스 기본 명령어 (0) | 2021.10.28 |
[Linux] PuTTY/PuTTYgen 설치하기 (0) | 2021.05.14 |
Comments