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.0019412696{main}( ).../index.php:0
20.08664263096Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.08664263096Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.297311454256Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.297911478888Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.298811534216Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.299111561616require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.308011961248K2ControllerItem->execute( ).../k2.php:64
90.308011961248K2ControllerItem->display( ).../BaseController.php:710
100.318312611952K2ControllerItem->display( ).../item.php:78
110.318312611952K2ControllerItem->display( ).../controller.php:19
120.322212982992Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.324613003360K2ViewItem->display( ).../ViewController.php:102
140.410715836040K2ViewItem->display( ).../view.html.php:742
150.410715836040K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.415816008976include( '/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.0019412696{main}( ).../index.php:0
20.08664263096Joomla\CMS\Application\SiteApplication->execute( ).../index.php:49
30.08664263096Joomla\CMS\Application\SiteApplication->doExecute( ).../CMSApplication.php:196
40.297311454256Joomla\CMS\Application\SiteApplication->dispatch( ).../SiteApplication.php:233
50.297911478888Joomla\CMS\Component\ComponentHelper::renderComponent( ).../SiteApplication.php:194
60.298811534216Joomla\CMS\Component\ComponentHelper::executeComponent( ).../ComponentHelper.php:377
70.299111561616require_once( '/var/www/vhosts/shan.info/httpdocs/components/com_k2/k2.php' ).../ComponentHelper.php:402
80.308011961248K2ControllerItem->execute( ).../k2.php:64
90.308011961248K2ControllerItem->display( ).../BaseController.php:710
100.318312611952K2ControllerItem->display( ).../item.php:78
110.318312611952K2ControllerItem->display( ).../controller.php:19
120.322212982992Joomla\CMS\Cache\Controller\ViewController->get( ).../BaseController.php:663
130.324613003360K2ViewItem->display( ).../ViewController.php:102
140.410715836040K2ViewItem->display( ).../view.html.php:742
150.410715836040K2ViewItem->loadTemplate( ).../HtmlView.php:230
160.415816008976include( '/var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php' ).../HtmlView.php:701
back to top