Different ways to create a file in Linux ?
Today we will look at a very basic article to know various ways to create a file in linux. Lets see the various commands below. 1. Touch command [root@ngelinux ]#...
Today we will look at a very basic article to know various ways to create a file in linux. Lets see the various commands below. 1. Touch command [root@ngelinux ]#...
Variables in Linux can be made read only using the keyword “readonly”. For example, if we want a variable to contain a value say 10 and must not be changed...
Today in this post, we will look how to perform redhat or centos major release upgrade. I. RHEL 5 to RHEL 6 a. In-place upgrades between major RHEL versions...
1. Introduction IFS stands for Internal Field Separator in Linux. $IFS is one of the system variable with default value “space, tab, and a new line”. This system variable signifies...
An interesting thing to do when creating shell scripts is to know how to color some text/output and blink it. Today in this article , we will look how to...
Positional parameters as its name suggests are different positional variables automatically defined by linux shell. The shell automatically assigns the passed parameters according to their position in 9 different parameters(1...
Let us look how to mount a filesystem from backup superblock location. In general this is not required, however sometimes in case you feel issue with primary superblock, this way...
Today we will look how to search some text in a file and replace specific string on the searched line. For this, we will use sed command i.e. Linux Stream...