Team EasyExamNotes
Conditional statements in Linux
Some of the conditional statements in Linux are- 1) if..then..fi statement (Simple If)2) if..then..else..fi statement (If-Else)3) if..elif..else..fi statement (Else If ladder)4) if..then..else..if..then..fi..fi..(Nested if 1) Bash … Read more
Shell in Linux
The shell, in Linux and other Unix-like operating systems, is a powerful tool that provides a user interface for interacting with the system. It allows … Read more
Pipelining
Pipe works like a filter. It is used to connect more than one commands.Symbol for pipe is “ | “.For example:$ who | wcIn above … Read more
Redirection
Redirection is a process of redirecting streams/ data to a file on command line.Redirection uses symbol ‘ > ’ and ‘ >> ‘. Example : … Read more
Modes of Vi
What are the different mode of Vi-editor? How can change from one mode to another. Vi and its advanced version Vim have three main modes: … Read more
Absolute and Relative Pathnames
Absolute Pathname:- Its full pathname of any file or directory that means where a file reside in its parent directory.For example: /usr/share/profjayesh is full pathname for … Read more
Editing text files in Linux
“Text editors” are used to edit the text files in Linux. One of the text editor used in Linux is as below. Vi/Vim text editor. Vi is … Read more