It MUST be possible to combine the multiple header fields into one “field-name: field-value” pair, without changing the semantics of the message, by appending each subsequent field-value to the first, each separated by a comma.
Read more: http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
"There are many different ways of providing Emacs with a Clojure REPL for a project. A few people have asked me how to do this recently, so I thought I’d mention the different methods I’ve used.
Shell script
You can create a command-line script that runs java, executing the
clojure.mainclass…
kill -0
Have you seen kill -0 before? I haven’t since very recent.
Here is what info kill has to say about it.
kill [-s SIGNAL | —signal SIGNAL | -SIGNAL] PID…
kill [-l | —list | -t | —table] [SIGNAL]…
The first form of the `kill’ command sends a signal to all PID
arguments. The default signal to send if none is specified is `TERM’.
The special signal number `0’ does not denote a valid signal, but can
be used to test whether the PID arguments specify processes to which a
signal could be sent.
So what’s the use for it?
I found it useful in bash scripts if you wan’t to make sure that processes are not overlapping.
$ kill -0 >/dev/null 2>&1 6008
$ echo $?
0
$ kill -0 >/dev/null 2>&1 6009
$ echo $?
1
As you can see in that case 6008 existed and 6009 not.
Found it very useful in last days.
IJjskiten - #Ice #Kiting

