가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

모의 시험

홈페이지로 설정

이 페이지 북마크

이메일 주소 구독

Unix 면접 질문과 답변

관련 차이점

Linux vs Unix

Ques 101. What is the significance of the ?tee? command?

It reads the standard input and sends it to the standard output while redirecting a copy of what it has read to the file specified by the user.

도움이 되었나요? Add Comment View Comments
 

Ques 102. What does the command ? $who | sort ?logfile > newfile? do?

The input from a pipe can be combined with the input from a file . The trick is to use the special symbol ?-? (a hyphen) for those commands that recognize the hyphen as std input.
In the above command the output from who becomes the std input to sort , meanwhile sort opens the file logfile, the contents of this file is sorted together with the output of who (rep by the hyphen) and the sorted output is redirected to the file newfile.

도움이 되었나요? Add Comment View Comments
 

Ques 103. What does the command ?$ls | wc ?l > file1? do?

ls becomes the input to wc which counts the number of lines it receives as input and instead of displaying this count , the value is stored in file1.

도움이 되었나요? Add Comment View Comments
 

Ques 104. Which of the following commands is not a filter man , (b) cat , (c) pg , (d) head

man A filter is a program which can receive a flow of data from std input, process (or filter) it and send the result to the std output.

도움이 되었나요? Add Comment View Comments
 

Ques 105. How is the command ?$cat file2 ? different from ?$cat >file2 and >> redirection operators ?

is the output redirection operator when used it overwrites while >> operator appends into the file.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.