Update help info
This commit is contained in:
parent
3dc4d94847
commit
653e0b92a7
1 changed files with 2 additions and 1 deletions
|
@ -6,10 +6,11 @@ use std::path::PathBuf;
|
||||||
|
|
||||||
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
|
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
|
||||||
|
|
||||||
|
/// Skip lines at the start of a file
|
||||||
#[derive(Parser, Debug)]
|
#[derive(Parser, Debug)]
|
||||||
#[command(version)]
|
#[command(version)]
|
||||||
pub struct Cli {
|
pub struct Cli {
|
||||||
/// The number of lines to skip
|
/// The number of lines (or tokens) to skip
|
||||||
lines: usize,
|
lines: usize,
|
||||||
/// The file to read, or stdin if not given
|
/// The file to read, or stdin if not given
|
||||||
pub file: Option<PathBuf>,
|
pub file: Option<PathBuf>,
|
||||||
|
|
Loading…
Reference in a new issue