5 releases
| 0.1.2 | Dec 4, 2024 |
|---|---|
| 0.1.1 | Nov 6, 2024 |
| 0.1.0 | Nov 6, 2024 |
| 0.0.2 | Nov 5, 2024 |
| 0.0.1 | Nov 5, 2024 |
#974 in Filesystem
293 downloads per month
12KB
217 lines
ZCopy allows for seamless file copying in the terminal
Description
This package builds on zoxide and cp shell command (copy for Windows) to easily move files in your system.
Copy files or directories to any directory you've already been to
Dependencies
NOTE: Support has been added for ZCopy on Windows but it is currently untested on Windows
To install
-
Install zoxide
-
Install cargo with
curl https://sh.rustup.rs -sSf | sh -
Run
cargo install zcopy -
Run
zcp --versionto verify installation
Installing manually
- Install zoxide
- Install cargo
- clone the repository at zmove
- Build with
cargo build --releaseand find executable in release folder
How to use
-
To move a single file or directory:
zcp <file name> <target directory> -
To move multiple files or directories:
zcp *.<extension if file has one> <target directory> -
To move multiple files or directories:
zcp <path (optional)>/*.<extension if file has one> <target directory> -
To move all files or directories:
zcp <path (optional)>/*.* <target directory>
Eg. If you have a directory called foobar and you want to move example.txt into it, you could run zcp example.txt foobar or even just zcp example.txt bar and full directory path will be inferred giving that the user has visited it before or if foobar exists in current directory.
Eg. If you would like to move multiple files to another directory, run zcp *.txt bar or zcp foo/*.txt bar or zcp ./* bar
Contribute
- Feel free to raise issues and make pull requests at
https://github.com/korkie9/zcopy