| Crates.io | ferry |
| lib.rs | ferry |
| version | 0.2.0 |
| created_at | 2025-06-03 02:28:22.585647+00 |
| updated_at | 2025-06-03 02:28:22.585647+00 |
| description | A ferry for your files. Grab them from a directory, move to somewhere else, and then drop them, instead of the traditional cp/mv workflow of specifying paths ahead of the time. |
| homepage | |
| repository | https://github.com/domahet/playedtogether/ |
| max_upload_size | |
| id | 1698593 |
| size | 51,017 |
A ferry for your files. Grab them from a directory, move to somewhere else, and then drop them, instead of the traditional cp/mv workflow of specifying paths ahead of the time.
With Rust (version 1.87.0 or higher) installed you can install the package straight from crates.io using cargo:
cargo install --locked ferry
Ferry operates using subcommands: select, copy, move, and list.
ferry selectSelect files to be processed by copy or move. By default, select launches an an interactive TUI if no other arguments are provided.
Interactive Selection (TUI):
ferry select
# or specify a starting directory
ferry select --interactive --path /path/to/start
Navigate with arrow keys, toggle selection with Space, and confirm with Enter. Only direct files in the specified directory are listed.
Regular Expression Selection:
ferry select --regex ".*\.rs$" --path src
Selects files matching the regex within the src directory.
Direct Selection:
ferry select file1.txt *.rs
Then in another directory execute ferry move or ferry copy to drop them off, depending on whether you want to emulate mv or cp.