mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-09-16 03:36:18 +00:00
cksum: fix format error
This commit is contained in:
parent
61ad84f447
commit
7c6a948526
1 changed files with 1 additions and 4 deletions
|
@ -15,14 +15,11 @@ use std::iter;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use uucore::{
|
use uucore::{
|
||||||
error::{FromIo, UResult},
|
error::{FromIo, UResult},
|
||||||
format_usage,
|
format_usage, help_about, help_section, help_usage,
|
||||||
sum::{
|
sum::{
|
||||||
div_ceil, Blake2b, Digest, DigestWriter, Md5, Sha1, Sha224, Sha256, Sha384, Sha512, Sm3,
|
div_ceil, Blake2b, Digest, DigestWriter, Md5, Sha1, Sha224, Sha256, Sha384, Sha512, Sm3,
|
||||||
BSD, CRC, SYSV,
|
BSD, CRC, SYSV,
|
||||||
},
|
},
|
||||||
help_about,
|
|
||||||
help_usage,
|
|
||||||
help_section,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const USAGE: &str = help_usage!("cksum.md");
|
const USAGE: &str = help_usage!("cksum.md");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue