博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Linux Test Project] [PATCH] Fix an bad variable name erro in runltp script
阅读量:5275 次
发布时间:2019-06-14

本文共 659 字,大约阅读时间需要 2 分钟。

[PATCH] Fix an bad variable name erro in runltp script (/opt/ltp/runltp)

Hi All,

 
I got an error for the latest version 20140115 of ltp project.
This error was found in my os, I use zh_CN for default language, 
the `date +"%Y_%b_%d-%Hh_%Mm_%Ss"`  will get like "2014_ 4yue_11-09h_36m_52s",
it contain a space before "4yue" will get the bad variable name error.
 
    I fix this error and change the date args,  see detail below:
-    local DEFAULT_FILE_NAME_GENERATION_TIME=`date +"%Y_%b_%d-%Hh_%Mm_%Ss"`
+    local DEFAULT_FILE_NAME_GENERATION_TIME=`date +"%Y_%m_%d-%Hh_%Mm_%Ss"`
 
    For your reference.
--
Best Wishes,
look

转载于:https://www.cnblogs.com/bittorrent/p/3766315.html

你可能感兴趣的文章
51nod1307(暴力树剖/二分&dfs/并查集)
查看>>
用户体验分析: 以 “南通市图书馆微信公众号” 为例
查看>>
linux的管道 |和grep命令以及一些其他命令(diff,echo,cat,date,time,wc,which,whereis,gzip,zcat,unzip,sort)...
查看>>
Nginx和PHP-FPM的启动、重启、停止脚本分享
查看>>
cookie 和session 的区别详解
查看>>
Vuex-状态管理模式
查看>>
浮点数运算的精度问题:以js语言为例
查看>>
数据挖掘领域十大经典算法
查看>>
【C语言】09-字符串
查看>>
数据库连接及线程池
查看>>
解决android应用程序适用新老android系统版本方法
查看>>
Oracle SQL语句执行过程
查看>>
Oracle 中的SID是什么意思?有什么作用?
查看>>
关于http协议
查看>>
jquery validation remote进行唯一性验证时只使用自定义参数,不使用默认参数
查看>>
软件工程个人项目——买书的最低价格
查看>>
5-21
查看>>
springboot 集成 swagger 自动生成API文档
查看>>
Oracle 分类统计sql
查看>>
HDU-2476 String painter 区间DP
查看>>