Skip to content

Commit

Permalink
fix: update examples binary name to be bootleg
Browse files Browse the repository at this point in the history
  • Loading branch information
hadronomy committed Apr 24, 2024
1 parent 868f91c commit 9c5a018
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/examples.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ impl Example {
pub static EXAMPLES: &[Example] = &[
Example::new(
"Copy the text `Hello, world!` to the clipboard",
"clip \"Hello, world!\"",
"bootleg \"Hello, world!\"",
"This will copy the text `Hello, world!` to the clipboard",
),
Example::new(
"Copy the contents of a file to the clipboard",
"clip < file.txt",
"bootleg < file.txt",
"This will copy the contents of `file.txt` to the clipboard",
),
Example::new(
"Copy the output of a command to the clipboard",
r#"echo "Hello, world!" | clip"#,
r#"echo "Hello, world!" | bootleg"#,
"This will copy the output of `echo \"Hello, world!\"` to the clipboard",
),
];

0 comments on commit 9c5a018

Please sign in to comment.