我遇到一个小问题,shell脚本无法执行IF语句中列出的命令之一。
如果您打开终端窗口并复制\粘贴整个脚本,该脚本将100%正常运行。
如果你只是通过调用它来运行脚本,那么一切都可以除了这一行你会在最底层看到:
echo $ newID> $ FILEID
环境是运行GitBASH的Windows Server 2012。 (这将解释C:/文件路径)
关于为什么脚本无法在作为“脚本”运行时执行该任务的任何想法,而不是将代码复制\粘贴到终端?
这是整个脚本。 谢谢
# Clean directory
cd C:/Scripts/Shoretel_Export/
rm -f C:/Scripts/Shoretel_Export/output/*.csv
# <---- Define: Date variables (not all dates used but available if needed \ just modify the wget string) ----> #
twoDaysAgo=$(date +%Y-%m-%d -d '2 days ago')
yesterday=$(date +%Y-%m-%d -d 'yesterday')
today=$(date +%Y-%m-%d)
tomorrow=$(date +%Y-%m-%d -d 'tomorrow')
# <---- Define: Date timestamp variables for file naming ----> #
stampTwoDaysAgo=$(date +%m-%d-%Y -d '2 days ago')
stampTomorrow=$(date +%m-%d-%Y -d 'tomorrow')
# <---- Define: Credentials variable ----> #
account="--http-user=APIuser --http-password=APIpassword"
# <---- Define: Export output directory variable ----> #
sourceFile="C:/Scripts/Shoretel_Export/output/currentLastID.csv"
output=$"C:/Scripts/Shoretel_Export/output/"${stampTwoDaysAgo}"_"${stampTomorrow}".csv"
tempIDsource=$"C:/Scripts/Shoretel_Export/output/archive/"${stampTwoDaysAgo}"_"${stampTomorrow}".csv"
# <---- Define: Export lastID variable ----> #
callID=$(awk -F'","|^"|"$' 'BEGIN { max=0 } $1 > max { max=$1 } END {print max}' "C:/Scripts/Shoretel_Export/output/ID/ID.txt")
# <---- Execute WGET function to export Shoretel calls from the specified date range ----> #
wget --auth-no-challenge --no-check-certificate --output-document=${output} "https://portal.shoretelsky.com/DataExport/CDRData?startDate=${twoDaysAgo}&endDate=${tomorrow}&lastId=${callID}" ${account}
# Perform empty file validation, if file is 0 kb the script will terminate and retry
if [ -s "$output" ]
then
echo "File is not empty continue to next IF statement"
else
./retry.sh
fi
#### At this point we should have a valid file 1 kb or larger. If the export contains 0 new records the script will terminate and the previous callID will remain ####
# Define tempID to check for invalid or empty ID field
tempID=$(awk -F'","|^"|"$' 'BEGIN { max=0 } $18 > max { max=$18 } END {print max}' $output)
# Define ID paramaters and rename files
fileID="C:/Scripts/Shoretel_Export/output/ID/ID.txt"
if [ "$tempID" -gt "$callID" ]
then
cp $output C:/Scripts/Shoretel_Export/output/archive/
mv $output $sourceFile
newID=$(awk -F'","|^"|"$' 'BEGIN { max=0 } $18 > max { max=$18 } END {print max}' $tempIDsource)
echo $newID > $fileID
echo "Export and Timestamp complete"
else
echo "Export contains 0 new call records \ the script will now terminate"
fi
答案 0 :(得分:0)
不确定它是否可以在Windows上运行,但您应该尝试在调试模式下执行脚本:
#!/bin/bash -x
所以你可以逐行检查发生了什么。 你也可以显示这个脚本的输出吗?