Malte Skoruppa <[EMAIL PROTECTED]> writes:
> I solved the problem in bash by editing my ~/.profile file:
>
> ssh() {
> args=$@
> echo -ne "\033k${args##* }\033\\";
> /usr/bin/ssh "$@";
You don't need to hard-code the path to ssh if you change this line to
command ssh "$@"
the trailing semicolons are also unnecessary because newline acts as a
command delimiter. Have a nice day.
_______________________________________________
screen-users mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/screen-users