Can someone please verify what this means?
if [ "$1" = "offlinebackup" -o "$1" = "onlinebackup" ]; then
I am thinking it means that if the first argument passed is equal to
"offlinebackup" R "onlinebackup" then do the following.
I can't seem to find any information about the "-o" anywhere.
A confirmation and reference would be very helpful. Thanks in advance.