#linux
Read more stories on Hashnode
Articles with this tag
1] Write a shell script to print arguments passed to the script in reverse order #!/bin/bash # Check if any arguments are provided if [ $# -eq 0 ];...
Cron job to be scheduled on every last day of the month 59 23 28-31 * * [ "$(date +\%d -d tomorrow)" == "01" ] && /path/to/your/command Explanation...
A computer’s operating system interface to the hardware is referred to as a software application. A number of software applications are run on...
1] Tomcat install yum install java wget https://downloads.apache.org/tomcat/tomcat-10/v10.1.16/bin/apache-tomcat-10.1.16.tar.gz.asc ...
The find command in LINUX is a command line utility for walking a file hierarchy. It can be used to find files and directories and perform subsequent...
SED command in UNIX stands for stream editor and it can perform lots of functions on files like searching, finding and replacing, insertion or...