linux - (bash) how to add some iteraion to filename -


i have script creates .html , .txt files every day. 1 file html , txt changed content, need every day new html&txt file date oof creation in file name : index_22-05-2013.html , have these variables in shell script:

destination_html="./daily/html/index_$(date +"%f").html" destination_txt="./daily/txt/index_$(date +"%f").txt" 

and line in shell script running 1 python script , creates html file

python `somescript.py` -m ${filelist[0]} ${filelist[1]} > $destination_html 

and i`m getting file created:

index_$(date +"%f").html 

what must file name : index_22-05-2013.html

sorry, not following you, since

echo "index_$(date +%f).html" 

outputs index_2013-08-20.html instead of index_22-05-2013.html need, want use command instead:

echo "index_$(date +%d-%m-%y).html" 

hope helps! :)


Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -