mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
Added description for hostid
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user