How to test a valid IP address in Linux Bash Shell ?
Here is a quick tip to test a valid IP address on linux bash shell. I have recently used it in one of the scripts i need to prepare. I....
Here is a quick tip to test a valid IP address on linux bash shell. I have recently used it in one of the scripts i need to prepare. I....
#! is known as shebang sequence. It marks the start of every script in linux. It tells the system what interpreter to use when executing the particular code written in...
Today we will look at an interesting tip to freeze and unfreeze our linux bash shell terminal. How it works ? Freeze will freeze our terminal and we are not...
In this post, we will look at an interesting topic how to refer the last command in bash shell. Sudo last command quickly ### Run the command [nglinux@nglinux ~]$...
In this post, we will look at the different parameters available in Linux Bash shell. These parameters are very useful in preparation of shell scripts and in general shell operations....
In this article we will look at the usage of exec command in linux. Lets see an example to understand exec command usage. Usage of exec Command ### Check...
Today we will check how to create a custom user command in Linux easily. Lets see the procedure step by step. The easiest way is to create a function and...
In this post we will look at the difference between nohup and &(ampersand) in Linux. As we know & (ampersand) is used to send any command execution to background and...
Many times our server crashes and reboots and we remain unaware about the situation. To know this situation, we cam setup alerts on our server and take corrective action immediately...
In this article, we will look at different terms w.r.t process and understand them. We all should know how to manage process(es) in linux. This post is very useful for...