Here a simply script to naming log files with Date Time:
###############################################
#!/bin/sh
date=`date +%y%m%d`
time=`date +%H:%M`
echo Test >> $date”-“$time”test.log”
Tecnical Resources
Here a simply script to naming log files with Date Time:
###############################################
#!/bin/sh
date=`date +%y%m%d`
time=`date +%H:%M`
echo Test >> $date”-“$time”test.log”