How can I identifying control characters in Perl?
- by sganesh
I want to implement the command line features like in a linux terminal. I saw this in ftp command also.
If I press tab I need to list the commands.
If I press control characters I need to get that characters based on that I will do some action.
And if I give any commands it should execute.
For this I tried with Term::ReadKey that is in…