I am trying to display a date time in the form of
07/08/2013 16:52:13
by using command in bash script:
dt=`date '+%d/%m/%Y_%H:%M:%S'`
which variable is used to populate a CSV file.
The only char accepted is "_" (underscore) or "-" between date and time, output is
07/08/2013_16:52:13
How can I get a space in between date and time? I tried almost (I hope) everything.