I'm trying to write a shell like interface to manage some files, but I'm running into a problem when I'm trying to get fancy and use command completion. The problem is that using read(or sysread) you must press "Enter" before it starts reading from the buffer. I need it to run through the loop each time a character is typed. I tried using something like this
my ($buffer, $command);
while(read(STDIN, $buffer, 1)){
#print "Read Character $buffer\n";
if($buffer eq "\t"){
##Do command completion stuff
last;
}else{
$command .= $buffer;
}
}
if($command eq "this"){
#Stuff
}elsif($command eq "this"){
#More Stuff
}...
Also if I can get this working, and I display the correct command, is there a way to put the command into STDIN, so that when they press "Enter" it will execute that command.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.