If you are attempting to run multiple commands from your device and not Windows [PC] within the same CMD window:on OP how do we run all the ADB command list without having to copy and paste each one?
In order to execute several commands in one line, you may use adb shell "cmd1;cmd2;cmd3" or cmd1 && cmd2 &&, etc.
Some would argue to utilize & not &&, && runs next command only if the previous was successful.
& runs next command after the previous completed no matter successful or not.
Code:
adb shell "netstat && ip && setprop"