Soldato
Hi all
trying to parse a log file into a nice csv file for import into mysql, one aspect of this is converting a data of the form Feb 19 into a 2012-02-19 format.
This is my line of data:
This is my code:
But I can not get sqldate to 'take' the value of $logdata and evaluate it against date. If I literally type
i get:
so how do i do it?
trying to parse a log file into a nice csv file for import into mysql, one aspect of this is converting a data of the form Feb 19 into a 2012-02-19 format.
This is my line of data:
Code:
Feb 19 18:42:16 sftp internal-sftp[12067]: session opened for local user galbraith from [xx.xxx.xxx.xxx]
This is my code:
Code:
...
logdate=`echo $LINE|cut -d" " -f1-2`
sqldate=`date +%Y-%m-%d -d $logdate`
...
But I can not get sqldate to 'take' the value of $logdata and evaluate it against date. If I literally type
Code:
date +%Y-%m-%d -d "Feb 19"
Code:
2012-02-19
so how do i do it?