j_melis

Untitled

Mar 7th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. $ (ssh_exec_and_log localhost "exit 0")
  2. $ echo $?
  3. 0
  4. $ (ssh_exec_and_log localhost "exit 44")
  5. ERROR: scripts_common.sh: Command "exit 44" failed: Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.
  6. ERROR MESSAGE --8<------
  7. Error executing exit 44: Warning: Permanently added 'localhost' (ECDSA) to the list of known hosts.
  8. ERROR MESSAGE ------>8--
  9. $ echo $?
  10. 44
Advertisement
Add Comment
Please, Sign In to add comment