mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #3030 from rahulkadukar/hostid-description
hostid: added description in documentation
This commit is contained in:
commit
57231e6543
1 changed files with 2 additions and 0 deletions
|
@ -12,6 +12,7 @@ use libc::c_long;
|
|||
use uucore::error::UResult;
|
||||
|
||||
static SYNTAX: &str = "[options]";
|
||||
const SUMMARY: &str = "Print the numeric identifier (in hexadecimal) for the current host";
|
||||
|
||||
// currently rust libc interface doesn't include gethostid
|
||||
extern "C" {
|
||||
|
@ -28,6 +29,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
pub fn uu_app<'a>() -> App<'a> {
|
||||
App::new(uucore::util_name())
|
||||
.version(crate_version!())
|
||||
.about(SUMMARY)
|
||||
.override_usage(SYNTAX)
|
||||
.setting(AppSettings::InferLongArgs)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue