Самые популярные вопросы и ответы для интервью и онлайн-тесты
Образовательная платформа для подготовки к интервью, онлайн-тестов, учебных материалов и живой практики

Развивайте навыки с целевыми маршрутами обучения, пробными тестами и контентом для подготовки к интервью.

WithoutBook объединяет вопросы для интервью по предметам, онлайн-практику, учебные материалы и сравнительные руководства в одном удобном учебном пространстве.

Подготовка к интервью

Пробные экзамены

Сделать домашней страницей

Добавить страницу в закладки

Подписаться по адресу эл. почты

Unix вопросы и ответы для интервью

Связанные сравнения

Linux vs Unix

Вопрос 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.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 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.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 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.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 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.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 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.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Самое полезное по оценкам пользователей:

Авторские права © 2026, WithoutBook.