At a shell prompt, it's really convenient to be able to pipe the output from one command into another. The current toolshed commands don't let you do this. Here's an example that would be nice to support:
iex> cat("/etc/services") |> grep(~r/ntp/)
... all lines with `ntp` in them...
The refactor branch has a start at implementing this.