일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring
- RequiredArgsConstructor
- SpringCloudConfig
- 12100
- 17144
- 프로그래머스
- 14889
- Value annotation
- Session Fixation Protection
- 14891
- github
- 백준
- 자바
- amazon-ecr-login
- Spring Authorization Server
- 15686
- self-hosted runners
- github actions
- 1260
- HttpRequestMethodNotSupportedException
- ConcurrentSessionControlAuthenticationStrategy
- aws-mysql-jdbc
- 1916
- Spring Security
- tailsamplingprocessor
- AWS
- openTelemetry
- RestControllerAdvice
- Java
- Session Registry
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