このシェルスクリプトを実行するのに問題があります。読みやすく保守しやすいので、スクリプトで単純な関数を使い始めることにしました。これは私の最初の試みであり、すべてがうまく機能しますが、メール機能がハングします。メールがEOFを待機していることは知っていますが、エコーを使用してメールをEOFにパイプしています。
引用符や、シェルスクリプトで引数を渡す際に、完全には理解していない問題が発生したと思います。考えられる引用符のすべての組み合わせを試しましたが、それでも毎回ハングします。
#!/bin/bash
if [ -f /tmp/imports ]
then
echo "Script Off"
exit
fi
OLDIFS=$IFS
IFS=$'\n'
IFS=$OLDIFS
LOGFILE="/var/log/file.log"
log(){
DATE=`date "+%m-%d-%Y %H:%M"`
MESSAGE="$DATE - $@"
echo $MESSAGE
echo $MESSAGE >>$LOGFILE
}
mail(){
BODY="$1"
SUBJECT="$2"
echo "$BODY" | mail -s "$SUBJECT" my@email.com
}
log "Script Started"
TodayFiles=`find /ftpfiles/incoming/ -type f -mmin +60`
Count=`find /ftpfiles/incoming/ -type f -mmin +60 | wc -l`
log "$Count Files Found"
if [ $Count -gt 4 ]; then
log "Too Many Files!!!\n"
mail "There were 5 or more files found by the script. I have not moved any files at this time. There is likely something very wrong. Please check things out immediately." "ATTN: TOO MANY FILES!"
fi
if [ $Count -gt 0 ]; then
log "Scanning Files..."
for Source in $TodayFiles
do
log "Found file: $Source"
#mv "$Source" "/ftpfiles/rejected$Source"
log "Moved file to: /ftpfiles/rejected$Source"
mail "The file $Source has been moved to rejected. Please find out why and send the proper rejection. Thank You." "ATTN: Stranded Import file Found"
done
fi