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
- Host: GitHub
- URL: https://github.com/philbobaggins/bak
- Owner: PhilboBaggins
- License: apache-2.0
- Created: 2017-09-24T04:41:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-31T05:18:51.000Z (about 2 years ago)
- Last Synced: 2025-03-10T23:28:56.749Z (12 months ago)
- Topics: backup, command-line, command-line-tool, commandline, commandline-tool, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# bak, bakt, baktm
[](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)