mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
commit
5fc01f718a
4 changed files with 16 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
# more
|
||||
|
||||
```
|
||||
more [OPTIONS] <FILE>...
|
||||
more [OPTIONS] FILE...
|
||||
```
|
||||
|
||||
Display the contents of a text file
|
||||
|
|
|
@ -29,10 +29,11 @@ const ABOUT: &str = help_about!("test.md");
|
|||
// So, we use test or [ instead of {} so that the usage string is correct.
|
||||
const USAGE: &str = "\
|
||||
test EXPRESSION
|
||||
test
|
||||
[
|
||||
[ EXPRESSION ]
|
||||
[ ]
|
||||
[ OPTION";
|
||||
[ OPTION
|
||||
]";
|
||||
|
||||
// We use after_help so that this comes after the usage string (it would come before if we used about)
|
||||
const AFTER_HELP: &str = help_section!("after help", "test.md");
|
||||
|
|
|
@ -2,10 +2,11 @@
|
|||
|
||||
```
|
||||
test EXPRESSION
|
||||
test
|
||||
[
|
||||
[ EXPRESSION ]
|
||||
[ ]
|
||||
[ OPTION
|
||||
]
|
||||
```
|
||||
|
||||
Check file types and compare values.
|
||||
|
|
10
src/uu/vdir/vdir.md
Normal file
10
src/uu/vdir/vdir.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# vdir
|
||||
|
||||
```
|
||||
vdir [OPTION]... [FILE]...
|
||||
```
|
||||
|
||||
List directory contents.
|
||||
Ignore files and directories starting with a '.' by default.
|
||||
|
||||
Mandatory arguments to long options are mandatory for short options too.
|
Loading…
Add table
Add a link
Reference in a new issue