Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对脚本没有太多经验,但我的任务是创建一个。我现在每天从 cron 运行一个脚本。脚本 (.sh) 是:
/usr/local/bin/ncftpput -f saxlogin.cfg /MTM/PH /mnt/zeus/scripts/xml/pph/2013.04.15/*
脚本运行良好,但我要做的是每天更改脚本以反映今天的日期(2013.04.15)。有没有办法将其设置为自动更改但保留 YMD 的格式?
date +"%Y.%m.%d"在你的路径定义中使用怎么样?
date +"%Y.%m.%d"
/usr/local/bin/ncftpput -f saxlogin.cfg /MTM/PH /mnt/zeus/scripts/xml/pph/`date +"%Y.%m.%d"`/*