当我只想获取昨天的文件格式日期和日期时,我的脚本有问题,例如:20150513_1300。
因此,我正在使用此脚本,但无法正常工作。

#!/bin/bash
YESTERDAY=`TZ=GMT+24 date +%Y%m%d_%H%m`
scp [email protected]:/var/opt/fds/statistics/*ExtendedStatistic.$YESTERDAY_.stat /SystemOM/

最佳答案

$YESTERDAY_可能未设置。而是尝试:

scp [email protected]:/var/opt/fds/statistics/*ExtendedStatistic.${YESTERDAY}_.stat /SystemOM/

关于linux - 在Unix/Linux上获取昨天的文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30214670/

10-14 06:43