``` cl src/deep/path/to/original-file new-file-name
Usage: easy-cp
Arguments:
Options: -h, --help Print help ```
Use with fzf
in fish.
```fish $ function cl set pathname (fzf --print0) and set newname $argv[1] and easy-cp $pathname $newname end
$ cl new.rs ```