Como você mencionou no comentário que deseja verificar no arquivo de data atual, você pode fazer isso da seguinte maneira:
FILE=$(ssh -q "$USER"@"$HOST" 'find /home/oracle/SABARISH/logs/sftp -type f -daystart -mtime -1 | wc -l')
if test "$FILE" -eq 0; then
exit
else
# do your SFTP stuff here
fi
de man find
:
-daystart
Measure times (for -amin, -atime, -cmin, -ctime, -mmin, and -mtime) from the beginning of today rather than from 24 hours ago. This option only affects tests which appear later on the command line.