view-logs-interactive
view-long-file
(press h for help)find-command
control + r in terminal
redirection
> is used to redirect output.
< is used to redirect input.
Output:
>> is used to append output to the end of the file.
Output:
<< (called "here document") is a file literal or input stream literal.
Output:
Here you can type whatever you want and it can be multi-line. It ends when you type EOF. (We used EOF in our example but you can use something else instead.)
Output:
<<< (called "here string") is the same as << but takes only one "word" (i.e., string).
Output:
Процес у Linux — це запущений екземпляр програми, який має власний простір пам’яті, системні ресурси та стан виконання. Можна також згадати, що процеси можуть спілкуватися один з одним через механізми міжпроцесного зв'язку. Крім того, було б корисно згадати, що процеси можуть створюватися, керуватися та завершуватися операційною системою.