I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn’t seem to be available?) I installed ipython via easy_install. It works but is missing gnu readline (needed for nice searching of command line history with ctrl-R, etc.) I found a blog post […]
Category: macos
Suppress Notice of Forked Command Being Killed
Let’s suppose I have a bash script (foo.sh) that in a very simplified form, looks like the following: echo “hello” sleep 100 & ps ax | grep sleep | grep -v grep | awk ‘{ print $1 } ‘ | xargs kill -9 echo “bye” The third line imitates pkill, which I don’t have by […]