[Linux] '/dev/null 2<&1'ÀÇ ÀǹÌ

   Á¶È¸ 13367   Ãßõ 0    

Summary1316;1116;Ȣ16;1648;않lj16; 파1068; 'nofile.txt'1012; cat 명/16112;/196; 1648;122116;면 1068;0152;1201;1004;/196; 아래와 같1008; 결과를 Ǻ19;lj16;다. 1593;, 실행결과와 에러를 표1456; 출/141;1109;치(/dev/tty)/196; 출/141;합니다.

[opradm@hvdev-tst-svr01 ~]$ cat nofile.txt
cat: nofile.txt: No such file or directory



'>'lj16; 표1456;출/141;1032; FD를 변ᅆ1;

[opradm@hvdev-tst-svr01 ~]$ cat nofile.txt > /dev/null
cat: nofile.txt: No such file or directory
[opradm@hvdev-tst-svr01 ~]$

'>'lj16; '1>'와 ᇼ1;1068;Ȣ16;다.




'2>&1 > /dev/null'과 '> /dev/null 2>&1'1032; 차1060;1216;

[opradm@hvdev-tst-svr01 ~]$ cat nofile.txt 2>&1 > /dev/null
cat: nofile.txt: No such file or directory
[opradm@hvdev-tst-svr01 ~]$ cat nofile.txt > /dev/null 2>&1
[opradm@hvdev-tst-svr01 ~]$


The&means file descriptor1. So2>&1redirects standard error to whatever standard output currently points at, while2>1redirects standard error into a file called1.

Also, the redirects happen in order. So if you say2>&1 >/dev/null, it redirects standard error to point at what standard output currently points at (which is probably a noop), then redirects stdout to /dev/null.

'> /dev/null 2>&1'1008; '&> /dev/null'와 ᇼ1;1068;Ȣ16;다.


References

https://codingdog.tistory.com/entry/%EB%A6%AC%EB%88%85%EC%8A%A4-%EB%AA%85%EB%A0%B9%EC%96%B4-devnull-21-%EC%9D%98-%EC%9D%98%EB%AF%B8%EB%A5%BC-%EC%95%8C%EC%95%84%EB%B4%85%EC%8B%9C%EB%8B%A4

https://linuxhint.com/redirect-stdout-and-stderr-to-file/



Á¦¸ñPage 3/26
2023-04   38997   µö·¯´×¼­¹ö
2023-04   43887   touch
2023-03   44577   witbox
2023-03   39722   µö·¯´×¼­¹ö
2023-03   37002   ±èÁØ¿¬
2023-03   34731   ±èÁØ¿¬
2023-03   19853   ¿ö´Ï´Ô
2023-03   15969   ¿ö´Ï´Ô
2023-03   13368   ¿ö´Ï´Ô
2023-03   13152   µö·¯´×¼­¹ö
2023-02   23431   µö·¯´×¼­¹ö
2023-02   33146   µö·¯´×¼­¹ö
2023-01   34653   µö·¯´×¼­¹ö
2023-01   46845   µö·¯´×¼­¹ö
2023-01   51596   ¹Ú¹®Çü
2023-01   50916   µö·¯´×¼­¹ö
2022-12   44025   ÃѾËź»ç³ªÀÌ
2022-12   38399   ±¤ÁÖµ¿Å°È£Å×
2022-12   33318   µö·¯´×¼­¹ö
2022-11   36853   µö·¯´×¼­¹ö