bogocopy: Simple project template from stack

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Copies a directory tree, preserving permissions and modification times, but making zero-size sparse copies of big files. See the README file. Usage: bogocopy [-v|--verbose] (-s|--size SIZE_MB) SRCDIR DSTDIR > copy a directory tree, preserving permissions and modification times, but > making zero-size sparse copies of big files > > DSTDIR will be created. Available options: `-h,--help` > Show this help text `--v,--verbose` > Verbose (debugging) output `--s,--size SIZE_MB` > Size limit, files leq to this size (in MB) are real-copied, those above are not. ### Bugs and limitations - Limited to unix-like systems - Uses the rsync and cp commands at run-time - Won't preserve the "ctime" (inode change time) of a node - Tested in only a desultory fashion, use at your own risk


[Skip to Readme]

Properties

Versions 0.1.0.1, 0.1.0.2
Change log None available
Dependencies base (>=4.0 && <5), directory, filemanip, filepath, optparse-applicative, shelly, text, unix [details]
License BSD-2-Clause
Copyright phlummox 2016
Author phlummox
Maintainer phlummox2@gmail.com
Category System Tools, Tools, File Manager
Home page https://github.com/phlummox/bogocopy
Source repo head: git clone https://github.com/phlummox/bogocopy
Uploaded by phlummox at 2016-12-16T16:31:23Z

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for bogocopy-0.1.0.1

[back to package description]

bogocopy Hackage version Linux Build Status

Copies a directory tree, preserving permissions and modification times, but making zero-size sparse copies of big files.

Installing and running

Install in the standard Haskell way: cabal install bogocopy, or stack install bogocopy if using Stack.

Usage:

    bogocopy [-v|--verbose] (-s|--size SIZE_MB) SRCDIR DSTDIR

copy a directory tree, preserving permissions and modification times, but making zero-size sparse copies of big files

DSTDIR will be created.

Available options:

-h,--help

Show this help text

--v,--verbose

Verbose (debugging) output

--s,--size SIZE_MB

Size limit, files leq to this size (in MB) are real-copied, those above are not.

Bugs and limitations