Hello I have around 20 commands and I have to send all of this to Unix shell, and copy the result, but I don't know how to do it.
I am not sure about what shell I have, because it is a small program connected to Mobile Network Managment, and with this small program we have access to send comands by line and recive the results by scream, for that reason I cannot use scripts for sending the commmands.
Command 1 - Connect with a server.
Wait until command 1 finish
Command 2- Update all the information from server 1 finish
Wait.
Command 3. Get some parameter.
... and more such commands.
I tryed with cmd1 | cmd2 | cmd3
and cmd1 & cmd2 & cmd3 and cmd1;cmd2
The problem is with cmd1 its connected to a RNC(Network element) and takes aroud 15 seconds, after that cmd2 has sense.
but just work for the first cmd. Any clue, how to run this?

&&between commands. – Bernhard Feb 4 at 13:00