/copy

Custom implementation of the linux cp command with progress reporting

Primary LanguageGoGNU General Public License v2.0GPL-2.0

copy

Custom implementation of the linux cp command with progress reporting

Usage

This program essentially follows the exact same usage as the regular cp command.

copy [OPTIONS] <SRC> <DEST>

Options:

  • -R, --recursive - Copy directory recursively (Same as stock cp)
  • -p, --progress - Enable the progress bar to be displayed, Useful for copying large directories or files.

Installation

  1. Clone the repo
$ git clone https://github.com/joshburnsxyz/copy
  1. Run the make command.
$ cd copy
$ make
  1. Run the make install command
$ sudo make install
  1. Verify installation
copy --help