Created on 07-26-2016 02:48 PM - edited 08-18-2019 06:08 AM
Hi All,
When I execute any command in sandbox, if my command has any syntax error/if something is going wrong while execution, it gives me whole list of error and it takes me to bottom of error how can i see the full error in sandbox from the begining.
My intention is scroll thru the error and see each and every line of my error.
Created 07-26-2016 02:52 PM
The best bet is to connect to the sandbox with a terminal application that allows you to scroll like PuTTY on Windows or Terminal on Mac.
You can also try running your command and redirecting the output to a file like:
mycommand > myoutput.txt
Then you can look at the file with:
less myoutput.txt
Created 07-26-2016 02:52 PM
The best bet is to connect to the sandbox with a terminal application that allows you to scroll like PuTTY on Windows or Terminal on Mac.
You can also try running your command and redirecting the output to a file like:
mycommand > myoutput.txt
Then you can look at the file with:
less myoutput.txt
Created on 07-26-2016 03:09 PM - edited 08-18-2019 06:08 AM
@Michael Young Do you mean i should use cygwin/putty to connect to sandbox and then try running these commands so that i can scroll thru my result log?
I was trying to connect to sandbox using cygwin with below command and it does not recognize the command
Created 07-26-2016 04:34 PM
Yes, that is what I was suggesting. For your ssh command, use a lowercase -p instead of uppercase -P.
Created 07-27-2016 06:51 AM
@Michael Young I tried even using lowercase p it couldn't connect me.
But I just tried with ssh root@192.168.228.128 it works.
Thank you