active questions tagged readline - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T21:01:38Z http://stackoverflow.com/feeds/tag/readline http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/726449/installing-ipython-with-readline-on-the-mac 2 Installing ipython with readline on the mac pythoneer 2009-04-07T15:55:16Z 2009-12-03T14:43:38Z <p>I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn't seem to be available?)</p> <p>I installed ipython via easy_install. It works but is missing gnu readline (needed for nice searching of command line history with ctrl-R, etc.)</p> <p>I found a <a href="http://www.brianberliner.com/2008/04/18/ipython-on-mac-os-x-105-leopard/" rel="nofollow">blog post</a> and other sources saying this could be fixed by</p> <p><code>sudo easy_install -f <a href="http://ipython.scipy.org/dist/" rel="nofollow">http://ipython.scipy.org/dist/</a> readline</code></p> <p>However, this leads to build errors in <code>readline.c</code> , particularly undeclared functions like <code>rl_compentry_func_t</code> and <code>rl_catch_signals</code>. </p> <p>Has anyone seen these errors? Is there another way to get ipython installed with readline?</p> http://stackoverflow.com/questions/1837693/using-the-python-shell-in-vi-mode-on-windows 1 Using the Python shell in Vi mode on WIndows Brian Neal 2009-12-03T04:45:21Z 2009-12-03T04:55:37Z <p>I know that you can use the Python shell in Vi mode on Unix-like operating systems. For example, I have this line in my <code>~/.inputrc</code>:</p> <pre><code>set editing-mode vi </code></pre> <p>This lets me use Vi-style editing inside the Python shell.</p> <p>But can this be made to work when using Python on a Windows XP box? I'm using the pre-built Python for Windows downloaded directly from python.org.</p> <p>I'm guessing that the Windows version does not use the GNU Readline library, but I'd be happy to be proven wrong. :)</p> http://stackoverflow.com/questions/1825547/how-to-customize-the-readline-keybindings-of-ghci 2 How to customize the readline keybindings of ghci Adaptee 2009-12-01T11:22:15Z 2009-12-01T14:32:21Z <p>I know ghci supports readline , and keybindings such as ^W and ^U work as expected. But I do wonder whether ghci support the customization of keybindings , just like the way bash deal with inputrc ?</p> <p>Thanks for any feedback.</p> http://stackoverflow.com/questions/1785233/convert-r-text-to-n-so-readlines-works-as-intended 1 Convert \r text to \n so readlines() works as intended joaoc 2009-11-23T18:58:13Z 2009-11-23T20:27:48Z <p>In Python, you can read a file and load its lines into a list by using</p> <pre><code>f = open('file.txt','r') lines = f.readlines() </code></pre> <p>Each individual line is delimited by <code>\n</code> but if the contents of a line have <code>\r</code> then it is not treated as a new line. I need to convert all <code>\r</code> to <code>\n</code> and get the correct list <code>lines</code>.</p> <p>If I do <code>.split('\r')</code> inside the <code>lines</code> I'll get lists inside the list.</p> <p>I thought about opening a file, replace all <code>\r</code> to <code>\n</code>, closing the file and reading it in again and then use the <code>readlines()</code> but this seems wasteful.</p> <p>How should I implement this?</p> http://stackoverflow.com/questions/1781518/how-do-i-compile-readline-support-into-ruby 1 How do I compile Readline support into Ruby samg 2009-11-23T07:04:18Z 2009-11-23T07:11:56Z <p>My version of ruby was compiled with <code>editline</code> (on os x) and I miss the features of <code>readline</code> in <code>irb</code>.</p> <p>How do I recompile ruby with <code>readline</code> support?</p> http://stackoverflow.com/questions/562115/press-alt-numeric-in-bash-and-you-get-arg-numeric-what-is-that 2 Press alt + numeric in bash and you get (arg [numeric]) what is that? dreftymac 2009-02-18T17:44:25Z 2009-11-12T12:26:15Z <p>This is one of those questions where it is easier to ask someone else instead of spending thirty minutes trying to "guess" for the correct place in the documentation or search engine terms:</p> <pre><code>Press alt + numeric in bash and you get (arg [numeric]) what is that? </code></pre> http://stackoverflow.com/questions/1606339/how-can-prevent-a-space-from-being-appended-to-the-tab-completed-word-using-perl 1 How can prevent a space from being appended to the tab-completed word using Perl's Term::Readline? Anandan 2009-10-22T10:31:37Z 2009-11-05T21:41:58Z <p>I am using tab completion support of <a href="http://search.cpan.org/perldoc/Term%3A%3AReadLine%3A%3AGnu" rel="nofollow">Term::ReadLine::Gnu</a> module. Every time I do a tab, I get a space after the completed word. </p> <p>For example:</p> <p>If i have a word "complete" as a possible completion. After prompt I pressed tab and I am getting it like:</p> <p>"complete "</p> <p>where these is a space at the end of the completed word. What I want is:</p> <p>"complete"</p> <p>Is there any way to remove that space?</p> http://stackoverflow.com/questions/691652/using-gnu-readline-how-can-i-add-ncurses-in-the-same-program 1 Using GNU Readline; how can I add ncurses in the same program? John Zwinck 2009-03-27T22:11:35Z 2009-10-29T20:32:19Z <p>The title is a bit more specific than my actual goal:</p> <p>I have a command-line program which uses GNU Readline, primarily for command history (i.e. retrieving previous commands using up-arrow) and some other niceties. Right now the program's output appears interspersed with the user's input, which sometimes is OK but the output is asynchronous (it comes via a network connection in response to the input commands), and that gets annoying sometimes (e.g. if lines are output when the user is typing new input).</p> <p>I'd like to add a feature to this program: a separate "window" for the output. I thought about using ncurses for this. But it appears from the <a href="http://invisible-island.net/ncurses/ncurses.faq.html#readline%5Flibrary" rel="nofollow">ncurses FAQ</a> that the two libraries are not easy to use together.</p> <p>I might consider using <a href="http://www.thrysoee.dk/editline/" rel="nofollow">Editline</a> or <a href="http://www.astro.caltech.edu/~mcs/tecla/" rel="nofollow">tecla</a> instead of Readline, but it's not clear to me if either of those will solve my problem. I'd also consider using something other than ncurses, including a library which provides both kinds of functionality (text-mode windows and command history), but I don't know what might be best.</p> <p>Oh, and support for colored text might get bonus points. I suspect I may be able to do that with Readline, so maybe it's a separate concern, but if a solution to my problem also makes it easy to add a bit of color to the output, so much the better.</p> <p>I'm using Ubuntu Hardy (Linux 2.6).</p> http://stackoverflow.com/questions/597777/tab-completion-interrupt-for-large-binaries 0 Tab completion interrupt for large binaries ks1322 2009-02-28T09:15:47Z 2009-10-28T21:11:35Z <p>If I accidentally launch tab completion when debugging large binary, gdb will freeze for some time scanning symbol table (up to 1 minute in my case). So I have to wait until whole symbol table is scanned. Is there any way to interrupt this process in gdb?</p> http://stackoverflow.com/questions/1633987/ansi-c-getc-causes-segfault-on-linux-but-not-os-x 2 ANSI C getc causes segfault on Linux but not OS X ashgromnies 2009-10-27T22:17:27Z 2009-10-27T23:07:39Z <p>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.</p> <p>The specific line that is causing me trouble is a <code>getc</code> from a file pointer.</p> <p>The file does exist.</p> <p>Here is the method in question:</p> <pre><code>// inits lists with all data in fp file pointer // returns # of lines read int init_intlists(FILE *fp, INTLIST *lists[]) { int c, ctr; ctr = 0; // need to use a linked list to store current number // for non 1-digit numbers... INTLIST *cur_num = NULL; int cur_num_len = 0; while ((c = getc(fp)) != EOF){ if(c != '\n' &amp;&amp; c != ' '){ c = c - 48; if(cur_num == NULL){ cur_num = init_intlist(c); } else { list_append(cur_num, &amp;c); } cur_num_len++; } else if(c == ' ' || c == '\n'){ // we reached a space, meaning we finished // reading a contiguous block of digits // now we need to figure out what we actually read... int num = 0; INTLIST *ptr; ptr = cur_num; while(cur_num_len != 0){ cur_num_len--; num += pow(10, cur_num_len) * ptr-&gt;datum; ptr = ptr-&gt;next; } if(lists[ctr] == NULL){ // init new list lists[ctr] = init_intlist(num); } else { // append to existing list_append(lists[ctr], &amp;num); } // clear cur_num to read the next one cur_num_len = 0; list_delete(cur_num); cur_num = NULL; } if(c == '\n') { // newline reached - increment to fill in next list ctr++; } } return ctr; } </code></pre> <p>The call to <code>init_intlists</code> that causes the segfault starts thusly:</p> <pre><code> FILE *fp = (FILE *)malloc(sizeof(FILE)); FILE *base_vector_fp = (FILE *)malloc(sizeof(FILE)); parse_args(argc, argv, fp, base_vector_fp); if(fp == NULL || base_vector_fp == NULL){ fprintf(stderr, "Critical error, could not load input files\n"); return 1; } INTLIST *lines[MAX_LINES] = {}; INTLIST *base_vectors[MAX_LINES] = {}; int lines_read = init_intlists(fp, lines); </code></pre> <p>and <code>parse_args</code> looks like:</p> <pre><code>FILE *load_file(char *filename) { FILE *fp; fp = fopen(filename, "r"); if(fp == NULL){ fprintf(stderr, "File %s does not seem to exist.\n", filename); return NULL; } // XXX Does this memory leak? // fp is never fclose()'d return fp; } void parse_args(int argc, char *argv[], FILE *fp, FILE *base_vector_fp) { char *prog = argv[0]; if (argc != 3){ fprintf(stderr, "Wrong number of arguments supplied.\nUse: %s &lt;data_filename&gt; &lt;base_vector_filename&gt;\n", prog); free(fp); free(base_vector_fp); fp = NULL; base_vector_fp = NULL; exit(1); } char *filename = argv[1]; *fp = *load_file(filename); char *base_vector_filename = argv[2]; *base_vector_fp = *load_file(base_vector_filename); } </code></pre> <p>So when I try invoking this on my Mac, it works perfectly fine and it reads the file in like it should and I'm able to operate on it and get the correct answers for my assignment.</p> <p>However, when I try running it on Linux, I get a segfault when it tries to <code>getc</code> in the <code>init_intlists</code> subroutine.</p> <p>I have verified that the files I supply for input exist and are world-readable(umask 755). I have tried with both absolute and relative paths. I have tried several different input files as well.</p> <p>I have tried using <code>gcc 4.2</code> and <code>gcc 3.4</code> on the Linux server and both produce a binary executable that will cause a segfault with any given input files.</p> <p>Here is the version information between the two different versions of gcc:</p> <p>Mac OS X:</p> <pre><code>me@dinosaurhunter ~&gt; gcc -v Using built-in specs. Target: i686-apple-darwin9 Configured with: /var/tmp/gcc/gcc-5465~16/src/configure --disable-checking -enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.0/ --with-gxx-include-dir=/include/c++/4.0.0 --with-slibdir=/usr/lib --build=i686-apple-darwin9 --with-arch=apple --with-tune=generic --host=i686-apple-darwin9 --target=i686-apple-darwin9 Thread model: posix gcc version 4.0.1 (Apple Inc. build 5465) </code></pre> <p>Linux:</p> <pre><code>me@janus:~/assignment_1$ gcc -v Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.2.4 (Ubuntu 4.2.4-1ubuntu4) </code></pre> <p>I invoke the compiler using the same <code>Makefile</code> on both OS X and Linux. The end invocation of <code>gcc</code> winds up looking like this:</p> <pre><code>gcc -Wall -g -c src/common_file_io.c src/main.c src/intlist.c gcc -Wall -g common_file_io.o main.o intlist.o -lreadline -lm -o bin/myprogram </code></pre> <p>Any ideas? I am at a complete loss, as is my professor.</p> http://stackoverflow.com/questions/1627184/java-nested-while-loop-using-readline 0 java nested while loop using readline Brandon 2009-10-26T20:36:12Z 2009-10-26T20:48:17Z <p>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. Here is the logical structure in the form of a nested while loop:</p> <pre><code>BufferedReader reader1 = new BufferedReader(new InputStreamReader(new FileInputStream(fromFile1))); BufferedReader reader2 = new BufferedReader(new InputStreamReader(new FileInputStream(fromFile2),"EUC-JP")); String line1, line2 = null; String temp1, temp2 = null; while ((line1=reader1.readLine()) != null) { StringTokenizer st1 = new StringTokenizer(line1); temp1 = "U"+st1.nextToken(); while((line2=reader2.readLine()) != null) { StringTokenizer st2 = new StringTokenizer(line2); temp2 = st2.nextToken(); temp2 = st2.nextToken(); temp2 = st2.nextToken(); if(temp2.equals(temp1)); { System.out.println(temp1+" "+temp2); } } } </code></pre> <p>However, all I see in the output is the first token from the first line of the first file and the third token from every line of the second file repeated 6,000 (the length of file 2) times regardless of whether they were "equal" or not. Does this have to do with their different encodings? I can see that having an effect on the equals test, but why isn't the loop behaving properly?</p> <p>Cheers, Brandon</p> http://stackoverflow.com/questions/1114522/in-perl-how-can-i-read-parts-of-lines-that-match-a-criterion 0 In Perl, how can I read parts of lines that match a criterion? Aaron 2009-07-11T20:04:54Z 2009-10-22T15:10:17Z <p>Sample Data:</p> <pre><code>603 Some garbage data not related to me, 55, 113 -&gt; 1-ENST0000 This is sample data blh blah blah blahhhh 2-ENSBTAP0 This is also some other sample data 21-ENADT)$ DO NOT WANT TO READ THIS LINE. 3-ENSGALP0 This is third sample data node #4 This is 4th sample data node #5 This is 5th sample data This is also part of the input file but i dont wish to read this. Branch -&gt; 05 13, 44, 1,1,4,1 17, 1150 637 YYYYYY: 2 : % </code></pre> <p><strong>EDIT:</strong> In the above data. The column width is fixed for the sections but there might be some sections I do not wish to read. above sample data has been edited to reflect that. </p> <p>So in this input file I want to read contents of first section '1-ENST0000' into an array and contents of '2-ENSBTAP0' into a separate array and so on. </p> <p>I am having trouble coming up with a regex that will define the pattern ...first three lines have <code>&lt;someNumber&gt;-ENS&lt;someotherstuf&gt;</code> and then there can also be <code>node #&lt;some number here&gt;</code></p> http://stackoverflow.com/questions/1603303/readlines-vi-mode-in-vim-ex-mode 2 Readline's vi-mode in vim ex mode ivotron 2009-10-21T20:11:42Z 2009-10-21T20:34:36Z <p>Let's see if I can explain myself.</p> <p>I use vi-mode in bash, which is really great since I'm used to Vi.</p> <p>When I'm inside vim and type : (to go to ex mode), since I'm used to the vi-mode from bash, I feel the slowliness of having to use this mode like the "regular" way of using bash.</p> <p>Question is: is there a way of using vim's ex-mode like bash's (or readline) vi-mode?</p> http://stackoverflow.com/questions/1551400/mac-osx-tab-completion 1 mac osx tab completion [closed] sa125 2009-10-11T18:34:00Z 2009-10-11T18:53:52Z <p>Hi - </p> <p>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. </p> <p>Let me explain by example - when I used git on ubuntu, I'll start typing</p> <pre><code>$ git </code></pre> <p>and hit tab, and the shell would complete the command or display the options available for the letter\s I've typed. That's what happens on my mac as well (1 level). However, when I'd continue typing the next part of the command</p> <pre><code>$ git commit </code></pre> <p>and hit tab, mac terminal would not complete the next subcommand (for git) as it would in linux. Same goes for other programs that support this multilevel command completion. I suspect this might be a readline library issue, but I'm not sure which one I should install. I'd appreciate any help on this - thanks!</p> http://stackoverflow.com/questions/1529553/can-bash-be-configured-to-search-string-on-the-current-input-line 0 can Bash be configured to search string on the current input line? Madsen 2009-10-07T04:58:54Z 2009-10-07T05:52:50Z <p>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 support this?</p> <p>Thank you very much!!</p> http://stackoverflow.com/questions/1512028/gnu-readline-how-do-clear-the-input-line 0 GNU Readline: how do clear the input line? John Zwinck 2009-10-02T22:08:16Z 2009-10-05T17:14:14Z <p>I use GNU Readline in the "select" fashion, by registering a callback function like so:</p> <pre><code>rl_callback_handler_install("", on_readline_input); </code></pre> <p>And then hooking up <code>rl_callback_read_char</code> as the callback for my <code>select()</code> loop for <code>STDIN_FILENO</code>. That's all pretty standard stuff, and works fine.</p> <p>Now, my program asynchronously prints messages to the screen, sometimes interleaved with input from the user. A "clean" session would look like this:</p> <pre><code>user input SERVER OUTPUT SERVER OUTPUT user input SERVER OUTPUT </code></pre> <p>But what if the user is midway through a line when the server response arrives? Then it gets ugly:</p> <pre><code>user input SERVER OUTPUT user inSERVER OUTPUT put SERVER OUTPUT </code></pre> <p>I fixed this simply by printing a newline before the server output if the user had typed anything (this is easy to tell by checking <code>rl_line_buffer</code>), and then doing <code>rl_forced_update_display()</code> after printing the server output. Now it looks like this:</p> <pre><code>user input SERVER OUTPUT user in SERVER OUTPUT user input SERVER OUTPUT </code></pre> <p>This is better, but still not perfect. The problem comes when the user typed an entire line but didn't yet press Enter--then it looks like this:</p> <pre><code>user input SERVER OUTPUT user input SERVER OUTPUT user input SERVER OUTPUT </code></pre> <p>This is bad because it appears to the user that they typed three commands (three responses for three inputs is just as possible as three responses for two inputs, which is what actually happened).</p> <p>A nasty hack (which works) is to do this:</p> <pre><code>user input SERVER OUTPUT user input - INCOMPLETE SERVER OUTPUT user input SERVER OUTPUT </code></pre> <p>I figured I could improve this by printing backspace ('\b') characters instead of <code>" - INCOMPLETE"</code>, but that doesn't seem to do anything at all on my terminal (gnome-terminal on Ubuntu Hardy). <code>printf("ABC\b");</code> just prints <code>ABC</code>, for whatever reason.</p> <p>So how can I erase the incomplete input line? Either by printing backspaces somehow (I can figure out how many to print--it's <code>strlen(rl_line_buffer)</code>), or by using some Readline facility I don't yet know about?</p> http://stackoverflow.com/questions/1357191/changing-word-delimiters-in-bash 1 Changing word delimiters in bash spatz 2009-08-31T12:17:39Z 2009-10-01T18:55:33Z <p>I want to change the delimiters bash (or readline) uses to separate words. Specifically I want to make <code>'-'</code> not delimit words, so that if I have the text</p> <pre><code>ls some-file </code></pre> <p>and I press <code>Alt-Backspace</code> it deletes the entire <code>some-file</code> text and not just up to the <code>'-'</code> char. This will also cause deletions of long flags like <code>--group-directories-first</code> faster and easier, needing only one key-press.</p> <p>I believe that this is how zsh behaves and I'd like to make bash behave in the same way.</p> http://stackoverflow.com/questions/1467041/advance-c-readline-to-next-line-in-a-function-call 0 Advance C# ReadLine() to next line in a function call Sam Youtsey 2009-09-23T16:11:50Z 2009-09-23T16:24:27Z <p>Hello,</p> <p>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 string each time the function is called. Here's what I have so far:</p> <pre><code>string invoiceNumberFunc() { string path = @"C:\Users\sam\Documents\GCProg\testReadFile.txt"; try { using (StreamReader sr = new StreamReader(path)) { invoiceNumber = sr.ReadLine(); } } catch (Exception exp) { Console.WriteLine("The process failed: {0}", exp.ToString()); } return invoiceNumber; } </code></pre> <p>How do I advance to the next line each time the invoiceNumberFunc() is called?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1450263/c-streamreader-readline-does-not-work-properly 1 c# - StreamReader.ReadLine does not work properly! Aleyna 2009-09-20T03:53:19Z 2009-09-20T07:16:09Z <p>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.</p> <p>I have following server-code</p> <pre><code>while (continueProcess) { try { StreamReader reader = new StreamReader(Socket.GetStream(), Encoding.UTF8); string command = reader.ReadLine(); if (command == null) break; OnClientExecute(command); } catch (Exception e) { Console.WriteLine(e.ToString()); } } </code></pre> <p>And the following client-code:</p> <pre><code>TcpClient tcpClient = new TcpClient(); try { tcpClient.Connect("localhost", serverPort); StreamWriter writer = new StreamWriter(tcpClient.GetStream(), Encoding.UTF8); writer.AutoFlush = true; writer.WriteLine("login&gt;user,pass"); writer.WriteLine("print&gt;param1,param2,param3"); } catch (Exception e) { Console.WriteLine(e.ToString()); } finally { tcpClient.Close(); } </code></pre> <p>Server reads only the very first line(login>user,pass) and then ReadLine returns null! </p> <p>What's the easiest way of achieving this line oriented reader as it is in Java's BufferedStreamReader? :s</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1415369/how-to-improve-speed-of-this-readline-loop-in-python 2 How to improve speed of this readline loop in python ? Birt 2009-09-12T15:26:19Z 2009-09-13T02:36:55Z <p>Hi all,</p> <p>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. I wrote this loop to get to the needed data:</p> <pre><code>def readloop(DBFILE): txtdb=open(DBFILE, 'r') sline = "" # loop till 1st "customernum:" is found while sline.startswith("customernum: ") is False: sline = txtdb.readline() while sline.startswith("customernum: "): data = [] data.append(sline) sline = txtdb.readline() while sline.startswith("customernum: ") is False: data.append(sline) sline = txtdb.readline() if len(sline) == 0: break customernum = getitem(data, "customernum: ") street = getitem(data, "street: ") country = getitem(data, "country: ") zip = getitem(data, "zip: ") </code></pre> <p>The Textfile is pretty huge, so just looping till the first wanted entry takes very much time. Anyone has an idea if this could be done faster (or if the whole way i fixed this is not the best idea) ?</p> <p>Many thanks in advance!</p> http://stackoverflow.com/questions/1052571/gnu-readline-history-feature 0 GNU readline History feature vipinsahu 2009-06-27T10:26:41Z 2009-09-07T08:08:26Z <p>I'm using this code for the history features in my shell: <a href="http://cc.byexamples.com/20080613/gnu-readline-how-to-keep-a-history-list-of-entered-command-lines/" rel="nofollow">http://cc.byexamples.com/20080613/gnu-readline-how-to-keep-a-history-list-of-entered-command-lines/</a> but when I compile this using gcc, I got this error </p> <pre><code>$ gcc filename.c /tmp/ccay2CgM.o: In function `main': rl.c:(.text+0x9): undefined reference to `rl_abort' rl.c:(.text+0x13): undefined reference to `rl_bind_key' rl.c:(.text+0x1d): undefined reference to `readline' rl.c:(.text+0x61): undefined reference to `add_history' collect2: ld returned 1 exit status $ </code></pre> http://stackoverflow.com/questions/1018752/installing-readline-6-0-on-os-x 2 Installing readline 6.0 on OS X Paul 2009-06-19T16:00:28Z 2009-09-05T12:49:32Z <p>I'm trying to install readline 6 from source but run into an error during 'make install'.</p> <p>Here is the end of the output after executing 'sudo make install'</p> <pre><code>( cd shlib ; make DESTDIR= install ) /bin/sh ../support/mkdirs /usr/local/lib /bin/sh ../support/shlib-install -O darwin9.7.0 -d /usr/local/lib -b /usr/local/bin -i "/usr/bin/install -c -m 644" libhistory.6.0.dylib /bin/sh ../support/shlib-install -O darwin9.7.0 -d /usr/local/lib -b /usr/local/bin -i "/usr/bin/install -c -m 644" libreadline.6.0.dylib install: you may need to run ldconfig </code></pre> <p>I know that <code>ldconfig</code> isn't installed by default on OS X, and I read somewhere that it shouldn't be needed to fix this issue. I believe it has something to do with dynamic libraries, but I haven't been able to find out how to fix the issue, anyone have any insight?</p> <p>FYI, I'm running OS X on an intel 2.4ghz macbook </p> <p>thanks</p> <p>P.S. I also applied the 3 available readline 6 patches before running configure and make</p> http://stackoverflow.com/questions/1165064/python-cannot-read-write-in-another-commandline-application-by-using-subproces 1 Python: cannot read / write in another commandline application by using subprocess module QA Person 2009-07-22T12:55:08Z 2009-09-04T03:49:19Z <p>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 2 XML packets. One is a packet and the other one is an packet. By analyzing these packets I can verifyt he result. I ahev the code as below</p> <pre><code>p = subprocess.Popen(SomeCmdAppl, stdout=subprocess.PIPE, shell = True, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) p.stdin.write((command + '\r\n').encode()) time.sleep(2.5) testresult = p.stdout.readline() testresult = testresult.decode() print(testresult) </code></pre> <p>I cannot ge any output back. It get stuck in place where I try to read the output by using readline(). I tried read() and it get stuck too</p> <p>When I run the commandline application manually and type the command I get the output back correctly as tow xml packets as below</p> <pre><code>Sent: &lt;PivotNetMessage&gt; &lt;MessageId&gt;16f8addf-d366-4031-b3d3-5593efb9f7dd&lt;/MessageId&gt; &lt;ConversationId&gt;373323be-31dd-4858-a7f9-37d97e36eb36&lt;/ConversationId&gt; &lt;SageId&gt;4e1e7c04-4cea-49b2-8af1-64d0f348e621&lt;/SagaId&gt; &lt;SourcePath&gt;C:\Python30\PyNTEST&lt;/SourcePath&gt; &lt;Command&gt;echo&lt;/Command&gt; &lt;Content&gt;Hello&lt;/Content&gt; &lt;Time&gt;7/4/2009 11:16:41 PM&lt;/Time&gt; &lt;ErrorCode&gt;0&lt;/ErrorCode&gt; &lt;ErrorInfo&gt;&lt;/ErrorInfo&gt; &lt;/PivotNetMessagSent&gt; Recv: &lt;PivotNetMessage&gt; &lt;MessageId&gt;16f8addf-d366-4031-b3d3-5593efb9f7dd&lt;/MessageId&gt; &lt;ConversationId&gt;373323be-31dd-4858-a7f9-37d97e36eb36&lt;/ConversationId&gt; &lt;SageId&gt;4e1e7c04-4cea-49b2-8af1-64d0f348e621&lt;/SagaId&gt; &lt;SourcePath&gt;C:\PivotNet\Endpoints\Pipeline\Pipeline_2.0.0.202&lt;/SourcePath&gt; &lt;Command&gt;echo&lt;/Command&gt; &lt;Content&gt;Hello&lt;/Content&gt; &lt;Time&gt;7/4/2009 11:16:41 PM&lt;/Time&gt; &lt;ErrorCode&gt;0&lt;/ErrorCode&gt; &lt;ErrorInfo&gt;&lt;/ErrorInfo&gt; &lt;/PivotNetMessage&gt; </code></pre> <p>But when I use the communicate() as below I get the Sent packet and never get the Recv: packet. Why am I missing the recv packet? The communicate(0 is supposed to bring everything from stdout. rt?</p> <pre><code>p = subprocess.Popen(SomeCmdAppl, stdout=subprocess.PIPE, shell = True, stdin=subprocess.PIPE, stderr=subprocess.STDOUT) p.stdin.write((command + '\r\n').encode()) time.sleep(2.5) result = p.communicate()[0] print(result) </code></pre> <p>Can anybody help me with a sample code that should work? I don't know if it is needed to read and write in separate threads. Please help me. I need to do repeated read/write. Is there any advanced level module in python i can use. I think Pexpect module doesn't work in Windows</p> http://stackoverflow.com/questions/1272315/parsing-csv-files-backwards 1 parsing CSV files backwards dassouki 2009-08-13T14:28:26Z 2009-08-13T14:46:29Z <p>I have csv files with the following format:</p> <pre><code>CSV FILE "a" , "b" , "c" , "d" hello, world , 1 , 2 , 3 1,2,3,4,5,6,7 , 2 , 456 , 87 h,1231232,3 , 3 , 45 , 44 </code></pre> <p>The problem is that the first field has commas "," in it. I have no control over file generation, as that's the format I receive them in. Is there a way to read a CSV file backwards, from the end of line to the beginning? </p> <p>I don't mind writing a little python script to do so, if I’m guided in the right direction.</p> http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows 1 python tab completion in windows Nathan 2009-07-04T03:11:37Z 2009-08-10T16:51:00Z <p>I'm writing a cross-platform shell like program in python and I'd like to add custom tab-completion actions. On Unix systems I can use the built-in readline module and use code like the following to specify a list of possible completions when I hit the TAB key:</p> <pre><code>import readline readline.parse_and_bind( 'tab: complete' ) readline.set_completer( ... ) </code></pre> <p>How can I do this on Windows? I'd like to avoid relying on 3rd-party packages if possible. If no solution exists is it possible to simply trap TAB key press so that I can implement my own from scratch?</p> http://stackoverflow.com/questions/1245907/handling-lines-with-quotes-using-pythons-readline 0 Handling lines with quotes using python's readline abyx 2009-08-07T17:08:28Z 2009-08-07T17:11:43Z <p>I've written a simple shell-like program that uses readline in order to provide smart completion of arguments. I would like the mechanism to support arguments that have spaces and are quoted to signify as one argument (as with providing the shell with such). </p> <p>I've seen that shlex.split() knows how to parse quoted arguments, but in case a user wants to complete mid-typing it fails (for example: 'complete "Hello ' would cause an exception to be thrown when passed to shlex, because of unbalanced quotes).</p> <p>Is there code for doing this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1202127/rawinput-without-leaving-a-history-in-readline 2 raw_input without leaving a history in readline lostgeek 2009-07-29T18:24:10Z 2009-07-30T11:03:36Z <p>Is there a way of using raw_input without leaving a sign in the readline history, so that it don't show when tab-completing?</p> http://stackoverflow.com/questions/1118238/how-to-deactivate-jline-for-jython-interactive-interpreter-session 2 How to deactivate JLine for Jython interactive interpreter session? Paidhi 2009-07-13T08:15:31Z 2009-07-18T13:18:49Z <p>Jython 2.5 comes with JLine per default.</p> <p>I would prefer to use the interactive interpreter with <a href="http://utopia.knoware.nl/~hlub/uck/rlwrap/" rel="nofollow">rlwrap</a>. It seems that rlwrap is not working if JLine is active.</p> <p>In Scala I would use <code>rlwrap scala -Xnojline</code>.</p> <p>Is there a similar option for Jython to deactivate JLine?</p> http://stackoverflow.com/questions/327251/why-is-the-python-readline-module-not-available-on-os-x 2 Why is the Python readline module not available on OS X? Greg Hewgill 2008-11-29T06:18:49Z 2009-07-12T11:13:15Z <p>The documentation of the Python <a href="http://www.python.org/doc/2.5.2/lib/module-readline.html" rel="nofollow"><code>readline</code></a> module says "Availability: Unix". However, it doesn't appear to be available on OS X, although other modules marked as Unix are available. Here is what I'm using:</p> <pre> $ uname -a Darwin greg.local 8.11.1 Darwin Kernel Version 8.11.1: Wed Oct 10 18:23:28 PDT 2007; root:xnu-792.25.20~1/RELEASE_I386 i386 i386 $ which python /usr/bin/python $ python Python 2.3.5 (#1, Nov 26 2007, 09:16:55) [GCC 4.0.1 (Apple Computer, Inc. build 5363) (+4864187)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import readline Traceback (most recent call last): File "", line 1, in ? ImportError: No module named readline >>> </pre> <p>I have also installed Python 2.5 through MacPorts but <code>readline</code> is not available there either.</p> <p>What can I do to provide <code>readline</code> functionality for Python's <code>raw_input()</code> function on OS X?</p> http://stackoverflow.com/questions/1086443/invoking-less-application-from-gnu-readline 2 invoking less application from GNU readline unknown (google) 2009-07-06T10:56:44Z 2009-07-12T05:34:20Z <p>Hi,</p> <p>Bit support question. Apologies for that. I have an application linked with GNU readline. The application can invoke shell commands (similar to invoking tclsh using readline wrapper). When I try to invoke the Linux less command, I get the following error: Suspend (tty output)</p> <p>I'm not an expert around issues of terminals. I've tried to google it but found no answer. Does any one know how to solve this issue?</p> <p>Thanks.</p>