Get Response from Curl via linux terminal

Hi,

is there any ways to get response from curl that executed in linux terminal?

I want to execute 3 linux shell,

call linuxshell1.sh
call linuxshell2.sh
call linuxshell3.sh

but I dont know how to get the first curl response.
how to make it sure that all three executed by sequence.

any help.?

thanks
arief

Review the “Shell” class. You can then call the curl command natively and deal with the response(s) in turn. Something like this:

Dim theShell As New Shell

theShell.Mode = 1
theShell.Timeout = -1

theShell.Execute "curl ""some command for curl"""
Do
    theShell.Poll
Loop Until Not theShell.IsRunning

Dim theResult As String = theShell.ReadAll

Then continue as needed processing theResult and then executing the next command.

thanks !
Its worked

regards,
arief