Hacker News new | ask | show | jobs
by grumdan 2552 days ago
A minor addition to what the article says about ipython: You can run arbitrary shell commands there without system() by prefixing them with !. It even supports using python variables as in `a = "some_dir"; ! cd $a`.