Shell script execution in ssis

1.7k views Asked by At

I have a file with extention .sh(shell script). I need execute this file in ssis using execute process task. how can i do this. Please help me!!! Code inside .sh file :echo SSIS test >> /home/junaib/test/sql.txt (for testing)

1

There are 1 answers

5
Ockert On

If you enabled WSL and you sure that the commands work from command line then you can run the command on cmd.exe with the /c flag

Executable : cmd.exe
Arguments  : /c "BASH C:\SO\test.sh"

enter image description here