Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- TensorFlow
- 알고리즘
- 코딩
- Windows10
- 쉘
- 시스템프로그래밍
- 학습
- 딥러닝
- 공부
- C++
- python
- error
- 영상처리
- 리눅스
- shell
- 백준
- 회귀
- 턱걸이
- CV
- OpenCV
- c
- Computer Vision
- 프로세스
- 운영체제
- linux
- 텐서플로우
- C언어
- Windows 10
- 프로그래밍
- 백준알고리즘
Archives
- Today
- Total
목록파이프 (1)
줘이리의 인생적기
리다이렉션(redirection), 파이프(pipe)
command로 실행되는 프로세스는 세가지 스트림을 가지고 있다. - 표준 입력 스트림(Standard Input Stream) - stdin - 표준 출력 스트림(Standard output Stream) - stdout - 오류 출력 스트림(Standard error Stream) - stderr 모든 스트림은 일반적인 text로 console에 출력하도록 되어 있다. 리다이렉션(redirection)은 표준 스트림의 흐름을 바꿔주는 기법이다. 주로 명령어 표준 출력을 화면이 아닌 파일에 쓸 때 사용한다. 예) ls > files.txt : ls로 출력되는 stdout의 방향을 files.txt로 바꿔줌. head < files.txt : files.txt의 파일 내용의 10줄이 화면에 출력됨. he..
공부/시스템 프로그래밍
2021. 12. 8. 23:00