User Stéphane - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T14:36:39Zhttp://stackoverflow.com/feeds/user/13022http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched1how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:34:14Z2009-11-28T01:58:22Z
<p>I see lots of examples and man pages on how to do things like search-and-replace using sed, awk, or gawk.</p>
<p>But in my case, I have a regular expression that I want to run against a text file to extract a specific value. I don't want to do search-and-replace. This is being called from bash. Let's use an example:</p>
<p>Example regular expression:</p>
<pre><code>.*abc([0-9]+)xyz.*
</code></pre>
<p>Example input file:</p>
<pre><code>a
b
c
abc12345xyz
a
b
c
</code></pre>
<p>As simple as this sounds, I cannot figure out how to call sed/awk/gawk correctly. What I was hoping to do, is from within my bash script have:</p>
<pre><code>myvalue=$( sed <...something...> input.txt )
</code></pre>
<p>Things I've tried include:</p>
<pre><code>sed -e 's/.*([0-9]).*/\\1/g' example.txt # extracts the entire input file
sed -n 's/.*([0-9]).*/\\1/g' example.txt # extracts nothing
</code></pre>
http://stackoverflow.com/questions/1540627/what-api-do-i-call-to-get-the-system-uptime1What API do I call to get the system uptime?Stéphane2009-10-08T21:31:51Z2009-10-09T14:22:57Z
<p>I would like to get the system uptime from within a C application running on a linux-based system. I don't want to call uptime(1) and parse the output, I'd like to call the underlying C API I suspect exists. Anyone know if there is such a call, or does uptime(1) simply process records obtained from wtmp?</p>
http://stackoverflow.com/questions/1467709/execv-wait-unix-programming-how-to-wait-for-a-child/1467741#14677413Answer by Stéphane for execv, wait, Unix programming, How to wait for a childStéphane2009-09-23T18:19:13Z2009-09-23T18:19:13Z<p>Once execvp() runs, it will never return. It replaces in-memory the running app with whatever was provided. So your fprintf() and wait() are in the wrong place.</p>
http://stackoverflow.com/questions/1408788/how-do-i-map-a-segfault-instruction-pointer-address-from-var-log-messages-to-an2How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?Stéphane2009-09-11T03:08:25Z2009-09-11T14:28:36Z
<p>(My environment is 64-bit Ubuntu, my application is C++ compiled and linked with g++.)</p>
<p>When an application does something like divide by zero or run a <code>asm("int $3")</code> left in the code, one of the following gets logged via syslog to <code>/var/log/kern.log</code> and <code>/var/log/messages</code>:</p>
<pre><code>Sep 10 18:06:47 VM kernel: [117194.123452] a.out[20288] trap divide error ip:45c59d sp:7fff65a91810 error:0 in a.out[400000+144000]
Sep 10 18:07:10 VM kernel: [117217.020833] a.out[20294] trap int3 ip:45c493 sp:7fff5cc559f0 error:0
</code></pre>
<p>In both those cases, the instruction pointer address points to something that I can easily look up in the <code>.map</code> file produced at link time (using the "<code>-Wl,-Map,output.map</code>").</p>
<p>But if I cause a seg fault, in this case by a call to <code>memcpy()</code> with the source set to NULL, the instruction pointer is so out of range, I have no idea how it is supposed to be mapped:</p>
<pre><code>Sep 10 18:06:13 VM kernel: [117160.228587] a.out[20282]: segfault at 0 ip 00007f7e79209092 sp 00007fff831faf08 error 4 in libc-2.9.so[7f7e79185000+168000]
</code></pre>
<p>In this example, I would have expected the IP to be in the range of 0x445e70-0x445e7f, which is the location of memcpy() according to my .map file.</p>
<p>My question: What is the trick to interpreting the ip in this case?</p>
http://stackoverflow.com/questions/1262321/how-do-i-prevent-the-disabling-display-to-avoid-infinite-recursion-error-mess0How do I prevent the "Disabling display # to avoid infinite recursion" error message in ddd?Stéphane2009-08-11T19:05:34Z2009-08-11T19:05:34Z
<p>I use ddd (v3.3.1.1 x86_64-pc-linux-gnu, Ubuntu 9.04) to debug my single-threaded C++ app. The first time through, everything works fine, and I can inspect variables without problems.</p>
<p>Once the app ends, if I try to run it again, my breakpoints are all still there, but all the variables fail to display. Clicking on them results in: "Disabling display # to avoid infinite recursion."</p>
<p>Basically -- I can only run through the debugger a single time. To see my variables again, I need to completely restart ddd.</p>
<p>I'd love to know the cause of this problem, or possibly a workaround.</p>
http://stackoverflow.com/questions/1156622/should-i-be-calling-lckpwdf-prior-to-getspent0should I be calling lckpwdf() prior to getspent()?Stéphane2009-07-20T23:59:37Z2009-07-21T00:02:44Z
<p>Is <code>lckpwdf()</code> and <code>ulckpwdf()</code> intended to be used only for apps directly accessing the shadow password file?</p>
<p>More precisely, my question is: If I call the usual API such as <code>getspnam()</code> or <code>getspent()</code>, should I be calling <code>lckpwdf()</code> first, or is that automatically done by <code>getspnam()</code>, etc...?</p>
http://stackoverflow.com/questions/181624/c-what-regex-library-should-i-use9C++: what regex library should I use?Stéphane2008-10-08T07:10:52Z2009-06-07T13:59:55Z
<p>I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.)</p>
<p>QUESTION: What libraries do people who regularly do regex from C/C++ recommend I look into? A quick search has brought the following to my attention:</p>
<p>1) Boost.Regex (I need to go read the Boost Software License, but this question is not about software licenses)</p>
<p>2) C (not C++) POSIX regex (#include <regex.h>, regcomp, regexec, etc.)</p>
<p>3) <a href="http://freshmeat.net/projects/cpp_regex/" rel="nofollow">http://freshmeat.net/projects/cpp_regex/</a> (I know nothing about this one; seems to be GPL, therefore not usable on this project)</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/799325/what-api-do-i-call-to-set-a-users-password-on-linux2What API do I call to set a user's password on linux?Stéphane2009-04-28T18:44:13Z2009-04-29T09:06:43Z
<p>I know about <code>passwd(1)</code> and <code>crypt(3)</code>. What I'm looking for is a C API to call which will set the user's password in the passwd/shadow files, without having to programatically walk the files and overwrite the entry for the user in question. Application runs as root.</p>
<p>Does such an API exist?</p>
<p>EDIT: Guess I should specify, the password is being synced between different systems, so we cannot simply call system("passwd") and allow the user to enter whatever password they want when passwd prompts them. We need to know the password so we can programatically update the other systems with the same password.</p>
http://stackoverflow.com/questions/799325/what-api-do-i-call-to-set-a-users-password-on-linux/800085#8000850Answer by Stéphane for What API do I call to set a user's password on linux?Stéphane2009-04-28T22:25:04Z2009-04-28T22:25:04Z<p>As 8jean commented above, looks like /usr/sbin/chpasswd might be the easiest way. Otherwise I'd have gone with noha's comment of using functions like fgetpwent() -- or fgetspent() for dealing with the shadow file -- to walk the list of users and modify the record(s) I need to change. Thanks, everyone!</p>
http://stackoverflow.com/questions/446205/can-i-continue-to-use-an-iterator-after-an-item-has-been-deleted-from-stdmultim0Can I continue to use an iterator after an item has been deleted from std::multimap<>?Stéphane2009-01-15T10:00:07Z2009-03-23T10:30:00Z
<p>Can I continue to use an multimap iterator even after a call to multimap::erase()? For example:</p>
<pre><code>Blah::iterator iter;
for ( iter = mm.begin();
iter != mm.end();
iter ++ )
{
if ( iter->second == something )
{
mm.erase( iter );
}
}
</code></pre>
<p>Should this be expected to run correctly, or is the iterator invalidated following the call to erase? Reference sites like <a href="http://www.cplusplus.com/reference/stl/multimap/erase.html" rel="nofollow">http://www.cplusplus.com/reference/stl/multimap/erase.html</a> are strangely quiet on this topic of the lifespans of iterators, or the effects of constructive/destructive methods on iterators.</p>
http://stackoverflow.com/questions/627319/how-do-i-get-a-process-to-reload-itself-in-linux2how do I get a process to reload itself in linux?Stéphane2009-03-09T17:51:23Z2009-03-10T12:26:35Z
<p>I have a service, say foo, written in C++, that runs as root. There is the usual scrip, /etc/init.d/foo start|stop|restart.</p>
<p>At certain times, foo needs to reload itself. Normally after an upgrade has finished. But doing things like:</p>
<pre><code>system("/etc/init.d/foo restart")
</code></pre>
<p>doesn't work since as soon as restart kills foo, the system() call obviously gets killed as well, and the restart script never executes to completion.</p>
<p>Is there another call I can use instead of system() that runs asynchronously as a sibling to the calling process, instead of creating a synchronous child?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/303845/how-to-use-libxml2-to-modify-an-existing-xml-file3how to use libxml2 to modify an existing xml file?Stéphane2008-11-19T23:49:22Z2009-01-02T01:57:34Z
<p>I need to take an existing xml file, and modify just a few attributes and write the file back out.</p>
<p>I was thinking of using libxml2 to get this done. Application is C/C++ running on Linux.</p>
<p>Thing is, libxml2 seems to include several variations of the kitchen sink, along with portable washrooms, showers, and various other things connected via the same plumbing. There are different parsers available, and different ways of doing things. For someone who hasn't used libxml2 before, this is a bit intimidating.</p>
<p>What example should I be looking at, so that in the end, my output .xml is identical to the original input file, plus the changes I've made? So far, I've been playing with libxml2's tree1.c, tree2.c, and reader1.c examples, but with just these the output xml wont be anywhere near the same.</p>
http://stackoverflow.com/questions/367141/how-to-ask-windows-to-open-an-external-file-based-on-file-association3How to ask Windows to open an external file based on file association?Stéphane2008-12-14T23:14:53Z2008-12-15T00:44:22Z
<p>Using Win32-specific APIs, is there an easy way to start an external application to open a file simply by passing in the path/name of the file?</p>
<p>For example, say I have a file called C:\tmp\image.jpg. Is there a single API that I can call to tell Windows to open the application associated with .jpg files? Without having to do a bunch of registry lookups?</p>
<p>I thought I remembered doing this many years ago, but I cannot find it.</p>
http://stackoverflow.com/questions/335839/can-you-really-have-a-function-method-without-a-body-but-just-a-try-catch-block10Can you really have a function/method without a body but just a try/catch block?Stéphane2008-12-02T23:44:30Z2008-12-03T01:37:47Z
<p>Note that this function does not have a "{" and "}" body. Just a try/catch block:</p>
<pre><code>void func( void )
try
{
...
}
catch(...)
{
...
}
</code></pre>
<p>Is this intentionally part of C++, or is this a g++ extension?</p>
<p>Is there any purpose to this other than bypass 1 level of {}?</p>
<p>I'd never heard of this until I ran into <a href="http://stupefydeveloper.blogspot.com/2008/10/c-function-try-catch-block.html" rel="nofollow">http://stupefydeveloper.blogspot.com/2008/10/c-function-try-catch-block.html</a></p>
http://stackoverflow.com/questions/181624/c-what-regex-library-should-i-use/186026#1860262Answer by Stéphane for C++: what regex library should I use?Stéphane2008-10-09T05:36:36Z2008-10-09T05:36:36Z<p>Thanks for all the suggestions.</p>
<p>I tried out a few things today, and with the stuff we're trying to do, I opted for the simplest solution where I don't have to download any other 3rd-party library. In the end, I #include <regex.h> and used the standard C POSIX calls regcomp() and regexec(). Not C++, but in a pinch this proved to be the easiest.</p>
http://stackoverflow.com/questions/141337/c-stl-should-i-store-entire-objects-or-pointers-to-objects7C++ STL: should I store entire objects, or pointers to objects?Stéphane2008-09-26T19:10:38Z2008-09-27T05:54:38Z
<p>Designing a new system from scratch. I'll be using the STL to store lists and maps of certain long-live objects.</p>
<p>Question: Should I ensure my objects have copy constructors and store copies of objects within my STL containers, or is it generally better to manage the life & scope myself and just store the pointers to those objects in my STL containers?</p>
<p>I realize this is somewhat short on details, but I'm looking for the "theoretical" better answer if it exists, since I know both of these solutions are possible.</p>
<p>Two very obvious disadvantage to playing with pointers:
1) I must manage allocation/deallocation of these objects myself in a scope beyond the STL.
2) I cannot create a temp object on the stack and add it to my containers.</p>
<p>Is there anything else I'm missing?</p>
http://stackoverflow.com/questions/77005/how-to-generate-a-stacktrace-when-my-gcc-c-app-crashes/76962#769621Answer by Stéphane for How to generate a stacktrace when my gcc C++ app crashesStéphane2008-09-16T20:55:21Z2008-09-16T20:55:21Z<p>Look at:</p>
<p>man 3 backtrace</p>
<p>And:</p>
<pre><code>#include <exeinfo.h>
int backtrace(void **buffer, int size);
</code></pre>
<p>These are GNU extensions.</p>
http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733939#1733939Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-16T19:09:57Z2009-11-16T19:09:57ZPreviously didn't know about -o option on grep. Nice to know. But it prints the entire match, not the "(...)". So if you are matching on "abc([[:digit:]]+)xyz" then you get the "abc" and "xyz" as well as the digits.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733780#1733780Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T09:55:31Z2009-11-14T09:55:31ZThis doesn't seem to work. It prints the entire line instead of the match.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matchedComment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T09:11:00Z2009-11-14T09:11:00ZWow...people voted this question down -1? Is it really that inappropriate of a question?http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733727#1733727Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T09:05:56Z2009-11-14T09:05:56Z...and the "p" option to print the the match, which I didn't know about either. Thanks again.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733727#1733727Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:59:10Z2009-11-14T08:59:10ZThank you, this worked for me as well once I used * instead of +.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733722#1733722Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:54:06Z2009-11-14T08:54:06ZInteresting... So there isn't a simple way to apply a complex regular expression and get back just what is in the (...) section? Cause while I see what you did here first with grep then with sed, our real situation is much more complex than dropping "abc" and "xyz". The regular expression is used because lots of different text can appear on either side of the text I'd like to extract.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733719#1733719Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:50:21Z2009-11-14T08:50:21ZThanks, but we don't have access to perl, which is why I was asking about sed/awk/gawk.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733710#1733710Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:46:51Z2009-11-14T08:46:51Zgrep, fgrep, egrep...all of them return the entire line that matches, they seem to ignore the (...) in the regex.http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched/1733697#1733697Comment by Stéphane on how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:40:53Z2009-11-14T08:40:53Zgrep gives me the matching line. I want just a part of the line that matches the "([0-9])" in this example.http://stackoverflow.com/questions/1540627/what-api-do-i-call-to-get-the-system-uptime/1544090#1544090Comment by Stéphane on What API do I call to get the system uptime?Stéphane2009-10-11T06:01:06Z2009-10-11T06:01:06ZI'd implemented reading /proc/uptime as bdonlan suggested above, but calling an API versus reading a "file" is exactly what I wanted. Thank you!http://stackoverflow.com/questions/265089/how-to-get-the-up-time-of-the-machine/265119#265119Comment by Stéphane on How to get the up time of the machine?Stéphane2009-10-08T18:54:59Z2009-10-08T18:54:59ZThere must be a C (3) call, right? What API does uptime(1) call to get this information?http://stackoverflow.com/questions/1467709/execv-wait-unix-programming-how-to-wait-for-a-childComment by Stéphane on execv, wait, Unix programming, How to wait for a childStéphane2009-09-23T19:03:52Z2009-09-23T19:03:52ZOr move it to the "ignore for now" part of the code, which is what the parent executes after the child has been fork()'d.http://stackoverflow.com/questions/1467709/execv-wait-unix-programming-how-to-wait-for-a-child/1467741#1467741Comment by Stéphane on execv, wait, Unix programming, How to wait for a childStéphane2009-09-23T18:30:09Z2009-09-23T18:30:09ZRe-reading your question...perhaps all you need is a call to system() to run your command? Or do you specifically want to fork+execvp?http://stackoverflow.com/questions/1408788/how-do-i-map-a-segfault-instruction-pointer-address-from-var-log-messages-to-an/1408935#1408935Comment by Stéphane on How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?Stéphane2009-09-11T06:53:53Z2009-09-11T06:53:53ZYes, the application is statically linked.http://stackoverflow.com/questions/1408788/how-do-i-map-a-segfault-instruction-pointer-address-from-var-log-messages-to-an/1408935#1408935Comment by Stéphane on How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?Stéphane2009-09-11T04:59:33Z2009-09-11T04:59:33ZBut according to the .map file produced by the linker, the function memcpy() is located at 0x445e70 -- see here:
0x0000000000445e70 memcpy@@GLIBC_2.2.5
So why would the ip be 0x7f7e79209092?