How to use shell variables in perl command call in a bash shell script?
I have a perl command in my shell script to evaluate date -1.
How can i use $myDate in perl command call?
This is the section in my script:
myDate='10/10/2012'
Dt=$(perl -e 'use POSIX;print strftime '%m/%d/%y', localtime time-86400;")
I want use $myDate in place of %m/%d/%y.
Any help will be appreciated.
Thank you.
'%m/%d/%y'with the value ofmyDatedoesn't make any sense unless you change the value ofmyDateto something like%m/%d/%y. Please fix your question appropriately.