linux shell编写以日期时间为文件名的脚本

--

#!/bin/sh

a=`date +%Y-%m-%d-%H-%M-%S`
echo $a;


a=`date +%Y-%m-%d-%Hh-%Mm-%Ss`
echo $a;

 

 

#log
MYDATE=`date +%d%m%y`
#append MYDATE to the variable LOGFILE that holds the actual filename of the log
LOGFILE=/root/test_log.$MYDATE
#create the file
>$LOGFILE
MYTIME=`date +%d%R`
LOGFILE2=/root/test_logtime.$MYTIME
#create the file
>$LOGFILE2
 
Last modified onWednesday, 18 September 2013 22:19

( ! ) Warning: count(): Parameter must be an array or an object that implements Countable in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 169
Call Stack
#TimeMemoryFunctionLocation
10.0010412472{main}( ).../index.php:0
20.10574262872Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.10574262872Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.412511454016Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.413511478648Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.414611533976Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.415011561376require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.426011961008K2ControllerItem->execute( ).../k2.php:64
90.426011961008K2ControllerItem->display( ).../BaseController.php:710
100.439612611712K2ControllerItem->display( ).../item.php:78
110.439612611712K2ControllerItem->display( ).../controller.php:19
120.445812982752Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.447613003120K2ViewItem->display( ).../ViewController.php:102
140.543215835800K2ViewItem->display( ).../view.html.php:742
150.543215835800K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.545316008736include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701

( ! ) Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
Call Stack
#TimeMemoryFunctionLocation
10.0010412472{main}( ).../index.php:0
20.10574262872Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.10574262872Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.412511454016Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.413511478648Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.414611533976Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.415011561376require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.426011961008K2ControllerItem->execute( ).../k2.php:64
90.426011961008K2ControllerItem->display( ).../BaseController.php:710
100.439612611712K2ControllerItem->display( ).../item.php:78
110.439612611712K2ControllerItem->display( ).../controller.php:19
120.445812982752Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.447613003120K2ViewItem->display( ).../ViewController.php:102
140.543215835800K2ViewItem->display( ).../view.html.php:742
150.543215835800K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.545316008736include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top