Amol Kulkarni wrote:
> TERM environment variable not set.

>                               os.write("TERM=ansi".getBytes());
Assuming you are using bash or sh, you need to run

  export TERM=ansi

to set environment variable.
Without "export" command, the variable remains as a shell variable
and will not be inherited to the command as an environment variable.

May be

  export TERM=dumb

is what you want.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
JSch-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jsch-users

Reply via email to