How to record complete Linux session/terminal logs to a file ?
Today in this post, we will see how to record complete terminal/session logs in a file in Linux. 1. Run the “script” command with filename in which to record. [ngeuser@ngelinux001...
Today in this post, we will see how to record complete terminal/session logs in a file in Linux. 1. Run the “script” command with filename in which to record. [ngeuser@ngelinux001...
Here we will see one Complete example to copy shell script and execute it, & get its output. I. Make Ansible Conifguration # cat ansible.cfg [defaults] inventory = hosts remote_user=saket...
Today in this article, we will see how to reset an ilo password from Linux using hponcfg. Let us have a look at the steps below. 1. Create an XML...
Suppose you have a list of servers, and you want to check for a particular port on which server its open. So if you telnet each server on that port...
Today we will see a useful script to convert DOS text into Unix text. The script will take backup of original file before making changes. And then makes the changes...
In this post, we will check the ping response from the list of servers using for loop in Unix/Linux. Lets see below script which will check the ping response from...
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...
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....