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
View File
@@ -0,0 +1,7 @@
# lscpu
```
lscpu [OPTION]...
```
display information about the CPU architecture
+1
View File
@@ -0,0 +1 @@
uucore::bin!(uu_lscpu);
+9
View File
@@ -0,0 +1,9 @@
# mountpoint
```
mountpoint [-d|-q] directory|file
mountpoint -x device
```
See if a directory or file is a mountpoint
+1
View File
@@ -0,0 +1 @@
uucore::bin!(uu_mountpoint);
+7
View File
@@ -0,0 +1,7 @@
# pwdx
```
pwdx [options] pid [...]
```
Report current working directory of a process
+1
View File
@@ -0,0 +1 @@
uucore::bin!(uu_pwdx);
+7
View File
@@ -0,0 +1,7 @@
# renice
```
renice [--priority|--relative] priority [-g|-p|-u] identifier...
```
Alter priority of running processes
+1
View File
@@ -0,0 +1 @@
uucore::bin!(uu_renice);