junaib
junaib

Reputation: 21

Shell script execution in ssis

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)

Upvotes: 0

Views: 2003

Answers (1)

Ockert
Ockert

Reputation: 443

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

Upvotes: 0

Related Questions