加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jd.sh.sample 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
## 修改日期:2020-10-17
## 作者:Evine Deng <evinedeng@foxmail.com>
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
export LC_ALL=C
ShellDir=$(cd $(dirname $0); pwd)
RootDir=$(cd $(dirname $0); cd ..; pwd)
ScriptsDir=${RootDir}/scripts
LogDir=${RootDir}/log
FileCurrentBashName=$(basename $0)
FileRun=$(echo $FileCurrentBashName | sed "s/\.sh//" )
LogTime=$(date "+%Y-%m-%d-%H-%M-%S")
LogFile="${LogDir}/${FileRun}/${LogTime}.log"
if [ ! -d ${LogDir}/${FileRun} ]; then
mkdir -p ${LogDir}/${FileRun}
fi
touch $LogFile
cd ${ScriptsDir}
node ${FileRun}.js > ${LogFile}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化