fish/functions/cuts.fish @ d0382bc711a0

Merge.
author Steve Losh <steve@stevelosh.com>
date Fri, 15 May 2015 23:37:44 -0400
parents d66bfb2537fe
children 0d6656688318
function cuts -d "Cut on space characters instead of tabs"
    cut -d' ' $argv
end