Initial commit

This commit is contained in:
2026-01-02 17:48:26 +09:00
commit c0edea3ded
20 changed files with 726 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
use clap::Parser;
/// Send a message to users logged on a host.
///
/// The `rwall` command sends a message to the users logged into the specified host.
/// The message to be sent can be typed in and terminated with EOF or it can be in a file
#[derive(Debug, Parser)]
pub struct Args {
/// The host to send the message to
host: String,
/// The file containing the message to be sent
#[arg(value_name = "PATH")]
file: Option<String>,
}
fn main() {
let _args = Args::parse();
unimplemented!()
}