5

I have a cron job for creating a gzip file:

mysqldump... | gzip -c > myfile..sql.gz

I want myfile to be of the format "time_date.sql.gz"

How do I create file with the current date and time?

Thanks

voretaq7
  • 79,879
  • 17
  • 130
  • 214
Am.
  • 165
  • 2
  • 7

1 Answers1

8
myfile_`date '+%F_%T'`.sql.gz
Daniel
  • 1,713
  • 1
  • 12
  • 16