1.
stdin 0
stdout 1
stderr 2
linuxhint.com/bash_stdin_stderr_stdout/
2.
> 파일이 없을 경우 생성 후 쓰기
>> 파일이 없을 경우 생성 후 append 하기
3.
2>&1
stderr 를 stdout 으로 같이 찍기
stackoverflow.com/questions/818255/in-the-shell-what-does-21-mean
*
wget -S http://testapi.com 2>&1 | grep "HTTP/" | awk '{print $2}'
jason-heo.github.io/sys/admin/2016/09/11/curl-http-code.html
/dev/null
linuxhint.com/what_is_dev_null/
반응형
'infra & cloud > linux' 카테고리의 다른 글
[Linux] .bashrc .profile (0) | 2022.12.04 |
---|---|
[Linux] 사용자 계정 관리 (0) | 2021.04.22 |
[linux] 유저 패스워드 관리 (0) | 2020.12.03 |
[linux] alias (별칭) 생성/조회/수정/삭제 (1) | 2020.05.14 |
[Ubuntu] 양방향 복사붙여넣기 되지 않을 경우 (0) | 2020.01.11 |