match the coreutils style

This commit is contained in:
Sylvestre Ledru
2024-01-26 19:09:54 +01:00
parent b16e835b9b
commit 1b4b449d49
11 changed files with 720 additions and 0 deletions

7
src/uu/lscpu/lscpu.md Normal file
View File

@@ -0,0 +1,7 @@
# lscpu
```
lscpu [OPTION]...
```
display information about the CPU architecture

1
src/uu/lscpu/src/main.rs Normal file
View File

@@ -0,0 +1 @@
uucore::bin!(uu_lscpu);

View File

@@ -0,0 +1,9 @@
# mountpoint
```
mountpoint [-d|-q] directory|file
mountpoint -x device
```
See if a directory or file is a mountpoint

View File

@@ -0,0 +1 @@
uucore::bin!(uu_mountpoint);

7
src/uu/pwdx/pwdx.md Normal file
View File

@@ -0,0 +1,7 @@
# pwdx
```
pwdx [options] pid [...]
```
Report current working directory of a process

1
src/uu/pwdx/src/main.rs Normal file
View File

@@ -0,0 +1 @@
uucore::bin!(uu_pwdx);

7
src/uu/renice/renice.md Normal file
View File

@@ -0,0 +1,7 @@
# renice
```
renice [--priority|--relative] priority [-g|-p|-u] identifier...
```
Alter priority of running processes

View File

@@ -0,0 +1 @@
uucore::bin!(uu_renice);