User camh - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:09:46Zhttp://stackoverflow.com/feeds/user/23744http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908610/how-to-get-pid-of-background-process/1911387#19113874Answer by camh for How to get PID of background process?camh2009-12-16T00:05:40Z2009-12-16T00:05:40Z<p>You need to save the PID of the background process at the time you start it:</p>
<pre><code>foo &
FOO_PID=$!
# do other stuff
kill $FOO_PID
</code></pre>
<p>You cannot use job control, since that is an interactive feature and tied to a controlling terminal. A script will not necessarily have a terminal attached at all so job control will not necessarily be available.</p>
http://stackoverflow.com/questions/1854631/detecting-program-errors-in-bash-scripts/1857630#18576300Answer by camh for Detecting program errors in bash scripts?camh2009-12-07T03:21:06Z2009-12-07T03:21:06Z<p>You can run the shell with <code>-e</code>, or put the command <code>set -e</code> in your script. This will cause the script to terminate if any of the commands returns non-zero exit status.</p>
<p>If you need to run a command where you dont want a non-zero exit to cause the script to terminate, append <code>|| true</code> to the command.</p>
http://stackoverflow.com/questions/1763891/can-stdout-and-stderr-use-different-colors-under-xterm-konsole/1768360#17683602Answer by camh for Can STDOUT and STDERR use different colors under XTerm / Konsole?camh2009-11-20T04:34:30Z2009-11-20T04:34:30Z<p>I can't see that there is any way for the terminal emulator to do this.</p>
<p>The interface between the terminal emulator and the shell/app is via a pseudo-tty, where the terminal emulator is on the master side and the shell/app on the other. The shell/app have both stdout and stderr connected to the same pty, so when the terminal emulator reads from the pty for the shell/app output it can no longer tell which was written to stdout and which to stderr.</p>
<p>You will have to use one of the solutions that intercepts the data between the application and the slave-pty and inserts escape codes to control the terminal output colo(u)r.</p>
http://stackoverflow.com/questions/1697706/executing-for-each-in-bash/1705825#17058251Answer by camh for Executing for-each in bashcamh2009-11-10T05:33:18Z2009-11-10T05:33:18Z<p>As other's have said, xargs(1) is what you want, but it is not always suitable. Most often when it has failed for me, it was when I wanted to run a shell function. xargs runs an executable command.</p>
<p>You can put a loop in your pipeline without needing to put it in a shell script:</p>
<pre><code>$ locate foo | sed s/bar/baz/ | [other-processing] | while read line ; do cowsay "$line" ; done
</code></pre>
<p>If cowsay was a shell function, this pipeline would work, but not with xargs.</p>
http://stackoverflow.com/questions/1705169/putting-a-complete-filesystem-into-revision-control/1705569#17055691Answer by camh for Putting a complete filesystem into revision controlcamh2009-11-10T04:11:17Z2009-11-10T04:11:17Z<p><a href="http://kitenet.net/~joey/code/etckeeper/" rel="nofollow">etckeeper</a> is a tool that puts the contents of /etc under revision control (with a choice of revision control systems). It has a layer on top that takes care of permissions, symlinks, etc. I'm not sure it if handles device nodes - probably not - but it could probably easily be extended to do so.</p>
<p>You may find that this tool can be adapted to handle an entire filesystem.</p>
http://stackoverflow.com/questions/1585989/how-to-parse-proc-pid-cmdline/1586203#15862031Answer by camh for How to parse /proc/pid/cmdlinecamh2009-10-18T22:26:30Z2009-10-18T23:22:10Z<p>Have a look at my answer <a href="http://stackoverflow.com/questions/1440941/finding-the-command-for-a-specific-pid-in-linux-from-python/1443544#1443544">here</a>. It covers what I found when trying to do this myself.</p>
<p>Edit: Have a look at <a href="http://groups.google.com/group/linux.debian.user/browse%5Fthread/thread/36bdeb2406c456f9" rel="nofollow">this</a> thread on debian-user for a bash script that tries its best to do what you want (look for version 3 of the script in that thread).</p>
http://stackoverflow.com/questions/1571712/problem-in-running-a-script/1571946#15719463Answer by camh for Problem in running a scriptcamh2009-10-15T12:01:13Z2009-10-15T12:01:13Z<p>If your script needs no other arguments, a quick and dirty way do to it is to put</p>
<pre><code>eval "$@"
</code></pre>
<p>at the start of your script. This will evaluate the command line arguments as shell commands. If those commands are to assign a shell/environment variable, then that's what it will do.</p>
<p>It's quick-and-dirty since anything could be put on the command line, causing problems from a syntax error to a bad security hole (if the script is trusted).</p>
<p>I'm not sure if "$@" means the same in ksh as it does in bash - using just $* (without quotes) would work too, but is even dirtier.</p>
http://stackoverflow.com/questions/1570401/create-a-user-group-in-linux-using-python/1571882#15718820Answer by camh for Create a user-group in linux using pythoncamh2009-10-15T11:47:13Z2009-10-15T11:47:13Z<p>There are no library calls for creating a group. This is because there's really no such thing as creating a group. A GID is simply a number assigned to a process or a file. All these numbers exist already - there is nothing you need to do to start using a GID. With the appropriate privileges, you can call chown(2) to set the GID of a file to any number, or setgid(2) to set the GID of the current process (there's a little more to it than that, with effective IDs, supplementary IDs, etc).</p>
<p>Giving a name to a GID is done by an entry in /etc/group on basic Unix/Linux/POSIX systems, but that's really just a convention adhered to by the Unix/Linux/POSIX userland tools. Other network-based directories also exist, as mentioned by Jack Lloyd.</p>
<p>The man page group(5) describes the format of the /etc/group file, but it is not recommended that you write to it directly. Your distribution will have policies on how unnamed GIDs are allocated, such as reserving certain spaces for different purposes (fixed system groups, dynamic system groups, user groups, etc). The range of these number spaces differs on different distributions. These policies are usually encoded in the command-line tools that a sysadmin uses to assign unnamed GIDs.</p>
<p>This means the best way to add a group locally is to use the command-line tools.</p>
http://stackoverflow.com/questions/1564824/c-overloading-operator-problem/1564845#15648454Answer by camh for C++ Overloading << Operator problemcamh2009-10-14T07:48:55Z2009-10-14T07:48:55Z<p>In your constructor with just a single argument, you need to set _manager to NULL/0. Test for this in your operator<< and don't output mgr->name if it is NULL/0. As it stands, you are dereferencing an uninitialised pointer.</p>
<pre><code>Person::Person(string name)
{
_name = name;
_manager = 0;
}
ostream &operator<<(ostream &stream, Person &p)
{
Person* mgr = p._manager;
stream << p._name << std::endl;
if (mgr)
stream << mgr->_name << std::endl;
return stream;
}
</code></pre>
<p>There are a number of other things you could do better, such as using const references on arguments and using the constructor initialiser list, but they wont be the cause of your problem. You should also address ownership issues with the manager object you pass in to the constructor to ensure it does not get double-deleted.</p>
http://stackoverflow.com/questions/1547066/how-do-we-iterate-through-all-elements-of-a-set-while-inserting-new-elements-to-i/1547131#15471310Answer by camh for How do we iterate through all elements of a set while inserting new elements to it?camh2009-10-10T05:17:02Z2009-10-10T05:17:02Z<blockquote>
<p>how do we code such a situation.</p>
</blockquote>
<p>You recognise that the code within the "if (x == 0)" block is executed only once and that nothing in that block references the loop variable(s), and as such, should be moved outside the loop.</p>
<pre><code> a1.insert(a2.begin(), a2.end());
for (iter = a1.begin(); iter != a1.end(); ++iter)
{
cout << *iter << endl;
}
</code></pre>
<p>I don't know if your real code can be refactored in a similar way, but with regard to the validity of your iterator after insertion, <a href="http://www.sgi.com/tech/stl/set.html" rel="nofollow">this</a> says:</p>
<blockquote>
<p>Set has the important property that
inserting a new element into a set
does not invalidate iterators that
point to existing elements.</p>
</blockquote>
<p>So, your iterator remains valid, but you cannot necessarily assume that all the elements inserted will come "after" the current position and that they will be reached by any current Forward Iterators.</p>
http://stackoverflow.com/questions/1541676/fread-terminating-mid-read-at-null-values-also-reading-in-garbage-past-expected/1542120#15421201Answer by camh for fread terminating mid-read at null values. Also reading in garbage past expected data.camh2009-10-09T06:30:40Z2009-10-09T06:30:40Z<p>You are using the count/size parameters of fread the wrong way around. Since you are reading bytes, the second parameter should be 1 and the third parameter the count:</p>
<pre><code>fread(data, 1, m_sizeOfData, fp);
</code></pre>
<p>You can then use the return value of fread to determine how many bytes were read. If you are getting the expected count returned, then you can be comfortable that you are reading all the data you wanted. In this case, you are probably outputting the data incorrectly - if you are treating it as a NUL-terminated string, then the 0x00 you are seeing will be the end of what is printed. The 0x06 is probably the box glyph.</p>
http://stackoverflow.com/questions/1514553/how-to-declare-an-array-in-python/1515282#15152821Answer by camh for how to declare an array in python? camh2009-10-04T00:50:24Z2009-10-04T00:50:24Z<p>Following on from Lennart, there's also <a href="http://numpy.scipy.org/" rel="nofollow">numpy</a> which implements homogeneous multi-dimensional arrays.</p>
http://stackoverflow.com/questions/1508839/bash-script-for-manual-routes-and-default-gateway-problem/1509026#15090260Answer by camh for Bash script for manual routes and default gateway problemcamh2009-10-02T11:39:13Z2009-10-02T11:39:13Z<p>grep will return 0 if it matches the pattern, so you need to test for $ppp-check -eq 0.</p>
<p>You can simplify your test a little bit:</p>
<pre><code>if grep -q ppp0 /proc/net/dev ; then
# I'm at home
else
# I'm at work
fi
</code></pre>
<p>"grep -q" means you don't need to redirect the output.</p>
http://stackoverflow.com/questions/1508928/friend-class-and-all-its-descendants/1508952#150895212Answer by camh for Friend class and all its descendantscamh2009-10-02T11:20:11Z2009-10-02T11:20:11Z<p>You can put protected accessor functions in A, and have A be a friend of E. That way, all derived classes of A can access the members of E via the accessor functions.</p>
http://stackoverflow.com/questions/1463113/read-data-from-pipe-and-write-to-standard-out-with-a-delay-in-between-must-handl/1463585#14635851Answer by camh for Read data from pipe and write to standard out with a delay in between. Must handle binary files too.camh2009-09-23T01:51:01Z2009-09-23T01:51:01Z<p>Do you have to do it in bash? Can you just use an existing program such as <a href="http://www.cons.org/cracauer/cstream.html" rel="nofollow">cstream</a>?</p>
<p>cstream meets your goal of a bandwidth controlled pipe command, but doesn't necessarily meet your other criteria with regard to your specific algorithm or implementation language.</p>
http://stackoverflow.com/questions/1447625/list-files-with-certain-extensions-with-ls-and-grep/1447636#14476364Answer by camh for List files with certain extensions with ls and grepcamh2009-09-19T03:27:32Z2009-09-19T05:55:22Z<p>No need for grep. Shell wildcards will do the trick.</p>
<pre><code>ls *.mp4 *.mp3 *.exe
</code></pre>
<p>If you have run</p>
<pre><code>shopt -s nullglob
</code></pre>
<p>then unmatched globs will be removed altogether and not be left on the command line unexpanded.</p>
<p>If you want case-insensitive globbing (so *.mp3 will match foo.MP3):</p>
<pre><code>shopt -s nocaseglob
</code></pre>
http://stackoverflow.com/questions/1446160/how-to-rollover-the-standard-output-from-bash/1447645#14476450Answer by camh for How to rollover the standard output from bash?camh2009-09-19T03:32:00Z2009-09-19T03:32:00Z<p>As well as multilog, there's also a similar tool called svlogd from the <a href="http://smarden.sunsite.dk/runit/" rel="nofollow">runit</a> suite. You may find that already packaged in your distro, since daemontools (multilog) has only recently become public domain.</p>
http://stackoverflow.com/questions/1440941/finding-the-command-for-a-specific-pid-in-linux-from-python/1443544#14435442Answer by camh for Finding the command for a specific PID in Linux from Pythoncamh2009-09-18T09:51:00Z2009-09-18T09:51:00Z<p>Look in <code>/proc/$PID/cmdline</code>, and then os.readlink() on <code>/proc/$PID/exe</code>.</p>
<p><code>/proc/$PID/cmdline</code> is not necessarily going to be correct, as a program can change its argument vector or it may not contain a full path. Three examples of this from my current process list are:</p>
<ul>
<li><code>avahi-daemon: chroot helper</code></li>
<li><code>qmgr -l -t fifo -u</code></li>
<li><code>/usr/sbin/postgrey --pidfile=/var/run/postgrey.pid --daemonize --inet=127.0.0.1:60000 --delay=55</code></li>
</ul>
<p>That first one is obvious - it's not a valid path or program name. The second is just an executable with no path name. The third looks ok, but that whole command line is actually in <code>argv[0]</code>, with spaces separating the arguments. Normally you should have NUL separated arguments.</p>
<p>All this goes to show that <code>/proc/$PID/cmdline</code> (or the ps(1) output) is not reliable.</p>
<p>However, nor is <code>/proc/$PID/exe</code>. Usually it is a symlink to the executable that is the main text segment of the process. But sometimes it has " <code>(deleted)</code>" after it if the executable is no longer in the filesystem.</p>
<p>Also, the program that is the text segment is not always what you want. For instance, <code>/proc/$PID/exe</code> from that <code>/usr/sbin/postgrey</code> example above is <code>/usr/bin/perl</code>. This will be the case for all interpretted scripts (#!).</p>
<p>I settled on parsing <code>/proc/$PID/cmdline</code> - taking the first element of the vector, and then looking for spaces in that, and taking all before the first space. If that was an executable file - I stopped there. Otherwise I did a readlink(2) on <code>/proc/$PID/exe</code> and removed any " <code>(deleted)</code>" strings on the end. That first part will fail if the executable filename actually has spaces in it. There's not much you can do about that.</p>
<p>BTW. The argument to use ps(1) instead of <code>/proc/$PID/cmdline</code> does not apply in this case, since you are going to fall back to <code>/proc/$PID/exe</code>. You will be dependent on the <code>/proc</code> filesystem, so you may as well read it with read(2) instead of pipe(2), fork(2), execve(2), readdir(3)..., write(2), read(2). While ps and <code>/proc/$PID/cmdline</code> may be the same from the point of view of lines of python code, there's a whole lot more going on behind the scenes with ps.</p>
http://stackoverflow.com/questions/176989/do-you-use-null-or-0-zero-for-pointers-in-c15Do you use NULL or 0 (zero) for pointers in C++?camh2008-10-07T02:15:05Z2009-09-17T07:24:37Z
<p>In the early days of C++ when it was bolted on top of C, you could not use NULL as it was defined as (void*)0. You could not assign NULL to any pointer other than void*, which made it kind of useless. Back in those days, it was accepted that you used 0 (zero) for null pointers.</p>
<p>To this day, I have continued to use zero as a null pointer but those around me insist on using NULL. I personally do not see any benefit to giving a name (NULL) to an existing value - and since I also like to test pointers as truth values:</p>
<pre><code>if (p && !q)
do_something();
</code></pre>
<p>then using zero makes more sense (as in if you use NULL, you cannot logically use p && !q - you need to explicitly compare against NULL, unless you assume NULL is zero, in which case why use NULL).</p>
<p>Is there any objective reason to prefer zero over NULL (or vice versa), or is all just personal preference?</p>
<p>Edit: I should add (and meant to originally say) that with RAII and exceptions, I rarely use zero/NULL pointers, but sometimes you do need them still.</p>
http://stackoverflow.com/questions/1430166/vector-ranges-in-c/1430176#14301765Answer by camh for Vector Ranges in C++camh2009-09-15T23:37:18Z2009-09-15T23:37:18Z<p>Your application does not crash because there is some standard that specifies that it should crash. Crashing is just random (undefined) behaviour. You will not always get a crash when you exceed the bounds of an array as you have found out.</p>
<p>Essentially, anything could happen such as printing a blank line, crashing or even as just posted - have demons fly out of your nose.</p>
http://stackoverflow.com/questions/1404425/problem-with-awk-grep/1404432#14044328Answer by camh for Problem with Awk & Grepcamh2009-09-10T10:11:53Z2009-09-10T10:11:53Z<pre><code>wmctrl -lp | awk '/Firefox/ { print $1 }'
</code></pre>
<p>No need for grep. Awk will do that. Also the default field separator is whitespace, so no need to specify that. Also, use single quotes around your awk script so the shell doesn't expand $1. That's why your script failed. $1 turned into nothing and your awk action became "print", which prints the whole line.</p>
http://stackoverflow.com/questions/1392869/how-to-return-null-from-a-method-in-a-template-class/1399608#13996080Answer by camh for How to return NULL from a method in a Template Classcamh2009-09-09T13:11:48Z2009-09-09T13:11:48Z<p>You could throw an exception when it is not found.</p>
<p>Since you have no knowledge of the type being looked-up and returned, you can not designate any particular value of that type as an error code. In essence, you are trying to squeeze the full domain of a type plus an error value into the domain of the type.</p>
<p>The suggestions to use iterators or other wrappers help solve the problem by extending the domain of the return type to encompass error values, but if you want to stick to the actual types you are dealing with, exceptions are you best other choice. That's what they're for.</p>
http://stackoverflow.com/questions/1399480/how-do-touch-typists-navigate-in-vi/1399513#13995135Answer by camh for How do touch typists navigate in vi?camh2009-09-09T12:54:00Z2009-09-09T12:54:00Z<p>I still keep my fingers on the home keys for touch typing, and just reach for the keys I want. My index finger is used for both h and j. I'm not often switching between h and j anyway, so it doesn't slow me down.</p>
<p>I find I use w, b, 0, f and / to navigate though, not so much with h, j, k and l.</p>
<p>BTW. I found it really hard to write this message into the browser text box. When typing about vi keys, my fingers naturally wanted to use them. Please excuse any extraneous characters :-)</p>
http://stackoverflow.com/questions/1398440/validating-variables-in-shell-script/1398537#13985371Answer by camh for Validating Variables in Shell Scriptcamh2009-09-09T09:26:22Z2009-09-09T09:26:22Z<p>I have this function in my shell library:</p>
<pre><code># Check that a list of variables are set to non-null values.
# $@: list of names of environment variables. These cannot be variables local
# to the calling function, because this function cannot see them.
# Returns true if all the variables are non-null, false if any are null or unset
varsSet()
{
local var
for var ; do
eval "[ -n \"\$$var\" ] || return 1"
done
}
</code></pre>
<p>I use it in code like this:</p>
<pre><code>varsSet VAR1 VAR2 VAR3 || <error handling here>
</code></pre>
http://stackoverflow.com/questions/1396107/c-status-and-control-pattern/1397356#13973562Answer by camh for C++: Status and control patterncamh2009-09-09T03:10:02Z2009-09-09T03:52:04Z<p>Many Linux systems now have <a href="http://www.freedesktop.org/wiki/Software/dbus" rel="nofollow">dbus</a> for this sort of stuff. Daemons run and provide information and a control interface on the system bus. Desktop applications communicate with one another via the session bus.</p>
<p>For instance, the <a href="http://wiki.bluez.org/wiki/Architecture" rel="nofollow">bluez bluetoothd daemon</a> uses dbus to provide information about bluetooth devices and services, and a control interface to control those devices.</p>
<p><a href="http://people.redhat.com/dcbw/NetworkManager/architecture.html" rel="nofollow">NetworkManager</a> also uses dbus for status and control purposes.</p>
<p>However, starting and stopping are functions that are usually outside the actual application itself. Perhaps the correct architecture would be for some service supervision framework (upstart, runit...) to provide a dbus interface to control services. That said, dbus itself can be used to start services on demand, but it really is not meant for service supervision. See <a href="http://upstart.ubuntu.com/faq.html#replace-dbus" rel="nofollow">this</a> for more.</p>
<p>Edit: I've just been reading about upstart some more, and it does have a <a href="http://upstart.ubuntu.com/wiki/DBusInterface" rel="nofollow">dbus interface for job control</a>. It is subject to change however.</p>
http://stackoverflow.com/questions/211378/hidden-features-of-bash/1339852#13398520Answer by camh for Hidden features of Bashcamh2009-08-27T09:14:21Z2009-08-27T09:14:21Z<p>One I use a lot is !$ to refer to the last word of the last command:</p>
<pre><code>$ less foobar.txt
...
# I dont want that file any more
$ rm !$
</code></pre>
http://stackoverflow.com/questions/1329453/how-do-i-wake-select-on-a-socket-close/1333376#13333760Answer by camh for How do I wake select() on a socket close?camh2009-08-26T09:12:36Z2009-08-26T09:12:36Z<p>If you use poll(2) as suggested in other answers, you can use the POLLNVAL status, which is essentially EBADF, but on a per-file-descriptor basis, not on the whole system call as it is for select(2).</p>
http://stackoverflow.com/questions/1319132/comprehesive-information-on-serial-ports-and-programming/1322362#13223622Answer by camh for Comprehesive information on serial ports and programming?camh2009-08-24T13:18:43Z2009-08-24T13:18:43Z<p>I learnt most of my unix serial comms from <a href="http://www.kohala.com/start/apue.html" rel="nofollow">Stevens' Advanced Programming in the UNIX Environment</a>.</p>
http://stackoverflow.com/questions/1321830/ensuring-the-existence-of-a-user-on-a-debian-gnu-linux-system/1322334#13223341Answer by camh for Ensuring the existence of a user on a Debian GNU/Linux systemcamh2009-08-24T13:13:38Z2009-08-24T13:13:38Z<p>You do not need to know whether the user exists or not. adduser(8) will not return an error if the user already exists with the same parameters. From the man page:</p>
<pre><code>EXIT VALUES
0 The user exists as specified. This can have 2 causes: The user
was created by adduser or the user was already present on the
system before adduser was invoked. Invoking adduser a second
time with the same parameters as before also returns 0.
</code></pre>
http://stackoverflow.com/questions/1298687/how-to-apply-backspace-characters-within-a-text-file-ideally-in-vim/1298773#12987730Answer by camh for How to "apply" backspace characters within a text file (ideally in vim).camh2009-08-19T09:31:09Z2009-08-19T09:31:09Z<p>Just delete all occurrences of .^H (where . is the regex interpretation of .):</p>
<pre><code>:s/.^H//g
</code></pre>
<p>(insert ^H literally by entering Ctrl-V Ctrl-H)</p>
<p>That will apply to the current line. Use whatever range you want if you want to apply it to other lines.</p>
<p>Once you done one <code>:s...</code> command, you can repeat on another line by just typing <code>:sg</code> (you need to g on the end to re-apply to all occurrences on the current line).</p>
http://stackoverflow.com/questions/1624025/loopback-adapter-name-in-linux/1624067#1624067Comment by camh on Loopback adapter name in Linuxcamh2009-10-27T03:12:37Z2009-10-27T03:12:37ZRFC3330 defines 127.0.0.0/8 as the subnet for loopback addresses. All it says about 127.0.0.1 is that it is ordinarily used as the loopback address. You could be using 127.0.1.1 as a loopback address if you want. -1 for not reading the RFC you linked to and then giving wrong advice.http://stackoverflow.com/questions/1628032/unix-directory-inodes-fragmentation-and-dumping-directory-contentsComment by camh on Unix directory inodes - fragmentation, and dumping directory contentscamh2009-10-27T03:06:28Z2009-10-27T03:06:28ZPlease specify which filesystem you are using.http://stackoverflow.com/questions/1585989/how-to-parse-proc-pid-cmdline/1586001#1586001Comment by camh on How to parse /proc/pid/cmdlinecamh2009-10-19T01:02:03Z2009-10-19T01:02:03ZI always believed they'd be NUL separated until I found a process where it wasn't. That was postgrey - a perl program using Net::Server which rewrites the command line, all in one argument.http://stackoverflow.com/questions/1585989/how-to-parse-proc-pid-cmdline/1586001#1586001Comment by camh on How to parse /proc/pid/cmdlinecamh2009-10-19T00:50:38Z2009-10-19T00:50:38ZThe mutability of the argument vector by the program is why I objected to your statement. If you hadn't said "always" and emphasised it, I wouldn't have commented.http://stackoverflow.com/questions/1585989/how-to-parse-proc-pid-cmdline/1586203#1586203Comment by camh on How to parse /proc/pid/cmdlinecamh2009-10-18T23:23:28Z2009-10-18T23:23:28ZI added a link to a thread where I posted a script that contains my implementation. It wont handle an executable name with a space in it, but they're rare (so rare that I've never seen one)http://stackoverflow.com/questions/1585989/how-to-parse-proc-pid-cmdline/1586001#1586001Comment by camh on How to parse /proc/pid/cmdlinecamh2009-10-18T22:23:18Z2009-10-18T22:23:18ZThis is wrong. Sometimes there are spaces separating the arguments - i.e. it's all in argv[0]. I know this because I have see this.http://stackoverflow.com/questions/1493479/cannot-access-django-app-through-ip-address-while-accessing-it-through-localhost/1493598#1493598Comment by camh on Cannot access django app through ip address while accessing it through localhostcamh2009-10-01T06:54:15Z2009-10-01T06:54:15Z0.0.0.0:8000 binds to all interfaces, not just the external one, so it can still be accessed as localhost:8000http://stackoverflow.com/questions/1463681/unix-programming-fork-execv-help-c-programmingComment by camh on Unix programming... fork() & execv() help... C Programmingcamh2009-09-23T02:40:48Z2009-09-23T02:40:48ZWhat is the type of commandArgv?http://stackoverflow.com/questions/1447625/list-files-with-certain-extensions-with-ls-and-grep/1447630#1447630Comment by camh on List files with certain extensions with ls and grepcamh2009-09-19T06:44:03Z2009-09-19T06:44:03ZI can't see how this would work. ls without any options produces output in columns. Anchoring to the end of the line will not match properly.http://stackoverflow.com/questions/1447625/list-files-with-certain-extensions-with-ls-and-grep/1447634#1447634Comment by camh on List files with certain extensions with ls and grepcamh2009-09-19T05:54:09Z2009-09-19T05:54:09ZMy mistake - that should be "shopt -s nullglob" not the set -o commandhttp://stackoverflow.com/questions/1447625/list-files-with-certain-extensions-with-ls-and-grep/1447634#1447634Comment by camh on List files with certain extensions with ls and grepcamh2009-09-19T04:10:29Z2009-09-19T04:10:29ZIn bash, you can do "set -o nullglob", and you wont get the errors.http://stackoverflow.com/questions/1432675/busybox-help-ip-command/1432720#1432720Comment by camh on BusyBox Help, ip Commandcamh2009-09-16T23:14:39Z2009-09-16T23:14:39ZTinyurl links are stupid as actual links you dont have to type. JFGI is lame. Dont bother posting that.http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430281#1430281Comment by camh on Given a start, end, and increment value, I want an algorithm that counts up and down.camh2009-09-16T03:19:25Z2009-09-16T03:19:25ZReally? A negative increment to mean decrement is a pretty common idiom. For something as simple as this, I personally find extraneous variables to be a distraction. YMMV.http://stackoverflow.com/questions/1430210/more-efficient-large-array-or-many-scalars/1430656#1430656Comment by camh on More efficient: large array or many scalarscamh2009-09-16T02:43:46Z2009-09-16T02:43:46ZConsider using a couple of if statements, so you do not do n=n and idx=idx.http://stackoverflow.com/questions/1430221/given-a-start-end-and-increment-value-i-want-an-algorithm-that-counts-up-and-d/1430281#1430281Comment by camh on Given a start, end, and increment value, I want an algorithm that counts up and down.camh2009-09-16T00:57:31Z2009-09-16T00:57:31ZThe "incrementing" variable could be encoded in the sign of the "increment" variable.