Inside the script there is one error i am getting as syntax error operand expected (error token is "-") at line 109
#!/bin/ksh
..............
while read file
do
upd_time=$((`date +%s`-`stat -c %Y ${file}`)) #At this line getting error
file_nm=`basename "${file}"`
..................
In the above live getting error as syntax error operand expected (error token is "-").
$file. Also, you should use$(...), not backticks, for command substitutions.