1752571 Members
5268 Online
108788 Solutions
New Discussion юеВ

in a rsh

 
SOLVED
Go to solution
Meirone Luca
Occasional Advisor

in a rsh

hi all,
i can see a file in a rsh with a command tail -f, but how do I do to sc from a file?
combination ok ctrl+c /ctrl+d don't work!

thanks
Luca
Meirone Luca
2 REPLIES 2
Steven Sim Kok Leong
Honored Contributor
Solution

Re: in a rsh

Hi,

Ability to ctrl-c has nothing to do with the shell you choose.

Check your stty settings:
# stty
intr = ^C;

You should see that intr = ^C. If it is not, then set it:

# stty intr ^C

Hope this helps. Regards.

Steven Sim Kok Leong
Meirone Luca
Occasional Advisor

Re: in a rsh

thank Steven!!!
it's ok!
Meirone Luca