Control - M Scheduler is not able to pick my shell script

Hi,

Below is a shell script that i made:-
#!/bin/ksh

#path=/opt/tibco/shared/adaptadores/SSCC/EVEREST/input/
if [ -f T010B04* ] ;
then
echo "ZIP Exists and now Processing"
for files in /opt/tibco/shared/adaptadores/SSCC/EVEREST/input/T010B04.*
do
unzip $files
echo "Files Unzipped"
echo $files
done;
mv /opt/tibco/shared/adaptadores/SSCC/EVEREST/input/T010B04.* /opt/tibco/shared/adaptadores/SSCC/EVEREST/completion
fi

this script needs to unzip the zip files which contain the name string as T010B04.* and then the zips needs to be moved into another folder.

When I manually fire the script from command line that is ./ABC.sh

the script works as expected, however when the CONTROL - M job fires this script the unzipping and movement of file is not happening.

Please help as i am not able to find any issues in my script!!!!:frowning:

Please post in an appropriate forum, "Post Here to Contact Site Administrators and Moderators" is about this forum's administration.

Also please use

```text
code tags
```

for code.