I have noticed that both are used in similar contexts, like:
MONTH=`date +%m`
DAY=$(date +%d)
So, I wonder:
- Is there a difference between the two, or you can use them interchangeably?
- Are both adhered to POSIX?
I have noticed that both are used in similar contexts, like:
MONTH=`date +%m`
DAY=$(date +%d)
So, I wonder: