Really need a quick help on this. This is the scenario.
Created source directory
SOURCE :
/apps/application_scripts/intl/bin
Here I have lot of shell scripts (*.sh)
TARGET :
/home/edwprod/intl/bin
Symbolic link:
ln -s /apps/application_scripts/intl/bin /home/edwprod/intl/bin
If i execute some ksh like this in some other directory
/home/edwprod/intl/bin/ex1.sh
It shows the error message
not found [No such file or directory]
Please advice.

/home/edwprod/intl/binexist prior to yourln -scommand? – fge Jan 4 at 9:07cp, if the second argument ofln -sis existing directory, the link is created in the directory with name given by last component of the link target, so you probably have/home/edwprod/intl/bin/binnow. – Jan Hudec Jan 4 at 9:20