Me estoy conectando a un ssh
sesión con AppleScript de la siguiente manera:
tell application "iTerm2"
tell current window
create tab with default profile
end tell
tell first session of current tab of current window
split horizontally with default profile
split vertically with default profile
write text "ssh username@server"
write text "ls" -- I need to get the output of command
end tell
end tell
¿Cómo puedo obtener la salida del comando en la máquina remota?
Lo siguiente no funcionó : set x to write text "ls"
0 votos
@user3439894 hecho, he actualizado el código
0 votos
@user3439894 No puedo compilar, tenga en cuenta que tengo varios paneles en la misma ventana, ¿puede mostrar un ejemplo de código?