Interrupting external processes

How do I send an interrupt to an external process started with open? eg

_, process = open(`something`)

kill(p, 2) should do the trick.

Thanks!