An open API service indexing awesome lists of open source software.

https://github.com/philbobaggins/bak

Simple command line tools to backup files
https://github.com/philbobaggins/bak

backup command-line command-line-tool commandline commandline-tool rust rust-lang

Last synced: 7 months ago
JSON representation

Simple command line tools to backup files

Awesome Lists containing this project

README

          

# bak, bakt, baktm

[![Travis CI build status](https://travis-ci.org/PhilboBaggins/bak.svg?branch=master)](https://travis-ci.org/PhilboBaggins/bak)

.....

..... [???](./Original bash implementations.md) ......

## bak

Make a backup copy of the specified file or files.

$ cargo run --bin bak test-file.txt
Copied test-file.txt -> test-file.txt.bak

## bakt

Make a backup copy of the specified file or files; naming them with the current date and time.

$ cargo run --bin bakt test-file.txt
Copied test-file.txt -> test-file.txt_2018-07-12_02-28-28.bak

## baktm

Make a backup copy of the specified file or files; naming them with the file's last modified date/time.

$ cargo run --bin baktm test-file.txt
Copied test-file.txt -> test-file.txt_2018-07-12_02-28-15.bak

## License

Licensed under either of the following:

* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)