fish/functions/clonedown.fish @ c55730194b70

Tower
author Steve Losh <steve@stevelosh.com>
date Tue, 03 Jul 2018 04:55:06 +0000
parents b2ba5708c420
children (none)
function clonedown -d "clone a repo down"
    cd ~/src
    git clone $argv
    cd (echo "$argv" | sed -Ee 's_.*/__')
end