Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.21 KB

File metadata and controls

64 lines (47 loc) · 1.21 KB

NitroCopy

NitroCopy is copy utility built for running on modern Linux systems and not so modern Windows systems, such as Windows 98 specifically.

Requirements

How to build

For Linux

  1. Create a build directory
mkdir -p build
cd build
  1. Configure the build
cmake ..
  1. Execute the build
cmake --build . --clean-first

Enjoy the build! The executable is in build/bin.

For Windows 9x

  1. Create a build directory
mkdir -p build-win32
cd build-win32
  1. Configure the build
cmake -DCMAKE_TOOLCHAIN_FILE=../mingw-w64-i686-toolchain.cmake ..
  1. Execute the build
cmake --build . --clean-first

Enjoy the build! The executable is in build-win32/bin.

Usage

NitroCopy [OPTIONS] <source> <destination>
  • source: file or directory to copy
  • destination: target file or directory
  • options:
    • -o: forces overwrite if destination exists already
    • -v: enables verbose logging
    • -h: shows help/usage information