sh easy-cp path/to/deep/dir/file newname // equiv to `cp path/to/deep/file path/to/deep/dir/newname`
Use with fzf in fish.
fzf
```fish $ function cl set pathname (fzf --print0) set newname $argv[1] and easy-cp $pathname $newname end
$ cl new.rs ```