일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- self-hosted runners
- 17144
- Session Fixation Protection
- Session Registry
- 12100
- tailsamplingprocessor
- 1916
- RestControllerAdvice
- Value annotation
- 프로그래머스
- github
- RequiredArgsConstructor
- Spring Security
- Spring Authorization Server
- 자바
- Java
- AWS
- ConcurrentSessionControlAuthenticationStrategy
- openTelemetry
- SpringCloudConfig
- Spring
- 14889
- 14891
- 백준
- amazon-ecr-login
- aws-mysql-jdbc
- github actions
- 1260
- HttpRequestMethodNotSupportedException
- 15686
Archives
- Today
- Total
한울이
[LINUX] pipe(|) vs xargs 본문
pipe('|')는 pipe('|') 앞에서의 표준 출력을 실행될 프로그램의 표준입력으로 넘겨준다.
Ex) echo "1234" > test.txt
echo test.txt | cat
==> 결과 : test.txt
Xargs'는 파이프('|') 앞에서의 표준 출력을 Xargs로 실행될 프로그램의 인자로 넘겨준다.
Ex) echo "1234" > test.txt
echo test.txt | xargs cat
==> 결과 : 1234
'PROGRAMMING' 카테고리의 다른 글
[JAVA] 변성 (0) | 2022.06.10 |
---|---|
[NETWORK] 서브네팅, CIDR (0) | 2022.05.29 |
[SPRING] Filter에서 발생한 예외 처리 (0) | 2022.05.29 |
[SQL] IN vs EXISTS (0) | 2022.05.29 |
[JS] this, arrow function (0) | 2022.05.29 |
Comments