2
votes
3answers
102 views
ANSI C getc causes segfault on Linux but not OS X
I have some ANSI C code that I developed on my Mac, but when I tried running it on our school's Linux servers I get a segfault.
The specific line that is causing me trouble is a g …
1
vote
1answer
36 views
How can prevent a space from being appended to the tab-completed word using Perl’s Term::Readline?
I am using tab completion support of Term::ReadLine::Gnu module. Every time I do a tab, I get a space after the completed word.
For example:
If i have a word "complete" as a pos …
0
votes
1answer
50 views
java nested while loop using readline
I'm confused. I'm trying to loop though 2 files looking at the first token in every line of the first file and comparing it to the third token of every line of the second file. Her …
2
votes
1answer
56 views
Readline’s vi-mode in vim ex mode
Let's see if I can explain myself.
I use vi-mode in bash, which is really great since I'm used to Vi.
When I'm inside vim and type : (to go to ex mode), since I'm used to the vi- …
0
votes
4answers
95 views
GNU Readline: how do clear the input line?
I use GNU Readline in the "select" fashion, by registering a callback function like so:
rl_callback_handler_install("", on_readline_input);
And then hooking up rl_callback_read_ …
1
vote
0answers
51 views
mac osx tab completion [closed]
Hi -
I'm just moved from linux to mac, and one of the problems I'm having is that tab completion is only 1 level deep, and I'm not sure how to correct that.
Let me explain by e …
0
votes
6answers
148 views
Advance C# ReadLine() to next line in a function call
Hello,
In my C# app I'm trying to feed into ReadLine() a simple text document with 7 digit strings separated line by line. What I'm attempting to do is grab the next 7 digit strin …
1
vote
2answers
502 views
c# - StreamReader.ReadLine does not work properly!
Simply I have been trying to implement what BufferedStreamReader does in Java. I have a socket stream open and just want to read it in a line oriented fashion -line by line.
I hav …
2
votes
5answers
219 views
How to improve speed of this readline loop in python ?
Hi all,
i'm importing several parts of a Databasedump in text Format into MySQL, the problem is
that before the interesting Data there is very much non-interesting stuff infront.
…
0
votes
1answer
32 views
can Bash be configured to search string on the current input line?
For fast locating positions when using the command line(Yes, I'm an Emacs fan). After viewing Bash' man, I can't find such tips. Does it need to modify readline's source code to su …
1
vote
2answers
104 views
Changing word delimiters in bash
I want to change the delimiters bash (or readline) uses to separate words. Specifically I want to make '-' not delimit words, so that if I have the text
ls some-file
and I press …
0
votes
3answers
216 views
In Perl, how can I read parts of lines that match a criterion?
Sample Data:
603 Some garbage data not related to me, 55, 113 ->
1-ENST0000 This is sample data blh blah blah blahhhh
2-ENSBTAP0 This is also some other sa …
1
vote
8answers
210 views
parsing CSV files backwards
I have csv files with the following format:
CSV FILE
"a" , "b" , "c" , "d"
hello, world , 1 , 2 , 3
1,2,3,4,5,6,7 , 2 , 456 , 87
h,1231232,3 …
2
votes
1answer
282 views
Installing readline 6.0 on OS X
I'm trying to install readline 6 from source but run into an error during 'make install'.
Here is the end of the output after executing 'sudo make install'
( cd shlib ; make DES …
1
vote
3answers
217 views
Python: cannot read / write in another commandline application by using subprocess module
I am using Python 3.0 in Windows and trying to automate the testing of a commandline application. The user can type commands in Application Under Test and it returns the output as …
