#shell-script
Read more stories on Hashnode
Articles with this tag
*] to know the current shell echo $0 echo $SHELL *] $(hostname) *] let *] *] ./<f_n>.sh " . " represents current dir if u want to specify path...
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...