Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rodneylab/shash
Generate SHA256 file for set of files for use with `shasum -c`
https://github.com/rodneylab/shash
rust-cli sha256sum shasum
Last synced: 10 days ago
JSON representation
Generate SHA256 file for set of files for use with `shasum -c`
- Host: GitHub
- URL: https://github.com/rodneylab/shash
- Owner: rodneylab
- License: bsd-3-clause
- Created: 2022-10-01T05:11:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-10T05:26:48.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T00:34:22.472Z (2 months ago)
- Topics: rust-cli, sha256sum, shasum
- Language: Rust
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
shashBasic CLI tool to generate SHA256 hashes for files.
Example usage:
```shell
shash --output SHA256 *.mp3
```Generates an SHA256 file:
```
SHA256 (audio-one.mp3) = e33465356c112bd076860ec2a2bf5ec07880866d7cd87b277a8d203c8b99d489
SHA256 (audio-two.mp3) = b947d657b3a59270b105ad6fc156457a5efb8a5dd3bb1de9a5328e9b83e43c09
SHA256 (audio-three.mp3) = 2361d5efddcecdfe93e9cbb16d7e78302ef1984acbec2b4b32967856d2574a61
```Later you can use this file to verify the files (using the Linux `shasum` tool), for example to check they were not corrupted on uploading to a remote system:
```shell
shasum -c SHASUM
```