I have tried so many ways but finally happy with this
The above script will produce load average from a remote system.
#!/bin/bash
for i in localhost 127.0.01
doRelated Articlessh raja@$i 'uptime | grep -o load.*'
done
The above script will produce load average from a remote system.
#!/bin/bashfor i in localhost 127.0.01
doRelated Articlessh raja@$i 'uptime | grep -o load.*'
done
Bashtop is a TUI Linux resource monitor written in... Bash. It shows the usage / stats for the CPU (including temperatur...
Want to add a timestamp (date and time) next to each command from your Bash history? This can be done by using the HISTT...
Hello ,You can use below shell script to extract only IP address from ip command.Command : ip addr show | gr...
Hello,Today I am writing below article which can help you to upload files to SFTP/FTP by using CURL.Ok why we need that ...
Working with text1. Read a CSV file line by line and extract specific filed, and store it in a variable.file_name="data....
0 Comments