As the title suggests, I have a python script to run when logging in with ssh. The problem is that in the script there is a "while" loop with "raw_input" inside which must read a keyboard value. If I run the script normally everything works ... if instead I run it ssh after logging in, it enters an infinite loop ... how is it possible !?
while True: try: value=raw_input('insert number: ") ..... except: ......
This is part of my code....only on ssh not work. If launched normally, everything works properly