Stéphane

604
reputation
63 views

Registered User

name Stéphane
member for 1 year
seen Nov 16 at 19:02
website
location Kelowna, Canada
age 36
Linux, Ubuntu, C++ developer
Nov
16
comment how to use sed, awk, or gawk to print only what is matched?
Previously 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.
Nov
14
comment how to use sed, awk, or gawk to print only what is matched?
This doesn't seem to work. It prints the entire line instead of the match.
Nov
14
comment how to use sed, awk, or gawk to print only what is matched?
Wow...people voted this question down -1? Is it really that inappropriate of a question?
Nov
14
comment how to use sed, awk, or gawk to print only what is matched?
...and the "p" option to print the the match, which I didn't know about either. Thanks again.
Nov
14
comment how to use sed, awk, or gawk to print only what is matched?
Thank you, this worked for me as well once I used * instead of +.
Nov
14
comment how to use sed, awk, or gawk to print only what is matched?
Interesting... 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.
Nov
14
comment how to use sed, awk, or gawk to print only what is matched?
Thanks, but we don't have access to perl, which is why I was asking about sed/awk/gawk.
Nov
14
asked how to use sed, awk, or gawk to print only what is matched?
Oct
19
awarded  Notable Question
Oct
11
comment What API do I call to get the system uptime?
I'd implemented reading /proc/uptime as bdonlan suggested above, but calling an API versus reading a "file" is exactly what I wanted. Thank you!
Oct
9
awarded  Notable Question
Oct
8
asked What API do I call to get the system uptime?
Oct
8
comment How to get the up time of the machine?
There must be a C (3) call, right? What API does uptime(1) call to get this information?
Sep
23
comment execv, wait, Unix programming, How to wait for a child
Or move it to the "ignore for now" part of the code, which is what the parent executes after the child has been fork()'d.
Sep
23
accepted execv, wait, Unix programming, How to wait for a child
Sep
23
comment execv, wait, Unix programming, How to wait for a child
Re-reading your question...perhaps all you need is a call to system() to run your command? Or do you specifically want to fork+execvp?
Sep
23
answered execv, wait, Unix programming, How to wait for a child
Sep
17
awarded  Yearling
Sep
11
comment How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?
Yes, the application is statically linked.
Sep
11
awarded  Commentator
Sep
11
comment How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?
But 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?
Sep
11
asked How do I map a segfault instruction pointer address from /var/log/messages to an address/function in my .map file?
Aug
18
awarded  Tumbleweed
Aug
11
asked How do I prevent the “Disabling display # to avoid infinite recursion” error message in ddd?
Jul
21
comment should I be calling lckpwdf() prior to getspent()?
I am modifying the file.
Jul
20
asked should I be calling lckpwdf() prior to getspent()?