#90daysofdevops
Read more stories on Hashnode
Articles with this tag
1] Git pull vs git fetch vs git clone git clone : when you want to create a local copy of a remote repository for the first time. This is typically...
Similar to Git Distributed Version Control System Mercurial Fossil Bazaar Darcs Centralized Version Control System Subversion (SVN) Perforce...
Understanding awk & cut commands The cut command is a command-line utility that allows you to cut out sections of a specified file or piped data and...
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...