Need to call an Executable (.exe) using shell

Hi all ,

I need to call an executable (.exe) using shell script.

Actual need is i need to call that shell script and do an export of some tables

is there any way . the executable is datamover

Please let me know if there are any option !!

Unix doesn't use .exe or any other extensions.

Use the name of the executable as a command:

datamover [ARGS]

That assumes that the executable is in a directory in your PATH variable. If it's not, add the full path to the file:

/path/to/datamover [ARGS]

Use this syntex
> /<completepath>/scriptname [args if any]