Tagged Questions

1
vote
2answers
99 views

Convert \r text to \n so readlines() works as intended

In Python, you can read a file and load its lines into a list by using f = open('file.txt','r') lines = f.readlines() Each individual line is delimited by \n but if the contents …
1
vote
1answer
21 views

How do I compile Readline support into Ruby

My version of ruby was compiled with editline (on os x) and I miss the features of readline in irb. How do I recompile ruby with readline support?
2
votes
3answers
129 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 …
0
votes
1answer
97 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 …
1
vote
1answer
39 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 …
2
votes
1answer
64 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
109 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_ …
0
votes
6answers
192 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
650 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 …
1
vote
0answers
63 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 …
2
votes
5answers
247 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. …
1
vote
2answers
130 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
229 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 …
0
votes
1answer
39 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
8answers
224 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 …

1 2 3 4 next
15 30 50 per page