Add a README from the manpages - plstree - ps and ls displayed as a tree | |
git clone git://bitreich.org/plstree git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit a63a660200ed35ebc2239079585d896a0d6ecde8 | |
parent e092c20c44cba0f35a9052ef37408061755faf09 | |
Author: Josuah Demangeon <[email protected]> | |
Date: Fri, 20 Apr 2018 12:16:12 +0200 | |
Add a README from the manpages | |
Diffstat: | |
A README | 80 +++++++++++++++++++++++++++++… | |
1 file changed, 80 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/README b/README | |
@@ -0,0 +1,80 @@ | |
+LSTREE(1) General Commands Manual LSTREE(1) | |
+ | |
+NAME | |
+ lstree list a tree of a directory with details | |
+ | |
+SYNOPSIS | |
+ progname [dir] | |
+ | |
+DESCRIPTION | |
+ The lstree list the content of dir recursively and format the output into | |
+ a tree with details from ls -l. | |
+ | |
+EXAMPLES | |
+ drwxr-xr-x 3 josuah wheel 512 Apr 16 22:18 |- auth | |
+ -rw-r--r-- 1 josuah wheel 5 Apr 16 22:18 | |- authdom | |
+ -rw-r--r-- 1 josuah wheel 6 Apr 16 22:18 | |- authid | |
+ -rw-r--r-- 1 josuah wheel 3 Apr 16 22:18 | |- badusers | |
+ drwxr-xr-x 5 josuah wheel 512 Apr 16 22:18 | `- users | |
+ drwxr-xr-x 2 josuah wheel 512 Apr 16 22:18 | |- bootes | |
+ -rw-r--r-- 1 josuah wheel 5 Apr 16 22:18 | | |- expire | |
+ -rw-r--r-- 1 josuah wheel 2 Apr 16 22:18 | | `- status | |
+ drwxr-xr-x 2 josuah wheel 512 Apr 16 22:18 | `- sys | |
+ -rw-r--r-- 1 josuah wheel 5 Apr 16 22:18 | |- expire | |
+ -rw-r--r-- 1 josuah wheel 2 Apr 16 22:18 | `- status | |
+ -rwxr-xr-x 1 josuah wheel 112 Apr 16 22:18 |- pass | |
+ -rwxr-xr-x 1 josuah wheel 677 Apr 16 22:18 `- run | |
+ | |
+SEE ALSO | |
+ find(1), lr(1), pstree(1), tree(1) | |
+ | |
+ list files, recursively: https://github.com/chneukirchen/lr, | |
+ | |
+AUTHORS | |
+ Josuah Demangeon <[email protected]> | |
+ | |
+OpenBSD 6.3 April 19, 2018 OpenBSD 6.3 | |
+ | |
+------------------------------------------------------------------------------ | |
+ | |
+PSTREE(1) General Commands Manual PSTREE(1) | |
+ | |
+NAME | |
+ pstree list process tree as a tree | |
+ | |
+SYNOPSIS | |
+ pstree | |
+ | |
+DESCRIPTION | |
+ The pstree utility list all processes with child-parent relationship | |
+ displayed as a tree, along with aditionnal details. The pstree utility | |
+ uses the output of the ps(1) command as described by POSIX, and therefore | |
+ do not require a procfs(5) to be mounted at proc. | |
+ | |
+EXAMPLES | |
+ USER TTY PID STAT COMMAND | |
+ root ttyC1 52639 S |- runsvdir | |
+ root ?? 7250 Ss | |- runsv | |
+ root ?? 3235 S | | |- svlogd | |
+ root ?? 55053 I | | `- tcpserver | |
+ root ?? 35659 Ss | |- runsv | |
+ root ?? 13780 I | | |- quark | |
+ nobody ?? 31140 I | | | `- quark | |
+ root ?? 19006 S | | `- svlogd | |
+ root ?? 60341 Ss | `- runsv | |
+ root ?? 24271 S | `- svlogd | |
+ root ttyC1 65863 Is+p |- getty | |
+ root ttyC2 42115 Is+p `- getty | |
+ | |
+SEE ALSO | |
+ lstree(1), ps(1) | |
+ | |
+ Small utilities that use the /proc filesystem: | |
+ http://psmisc.sourceforge.net/, | |
+ | |
+ Minimal Homepage of pstree : http://www.thp.uni-duisburg.de/pstree/ | |
+ | |
+AUTHORS | |
+ Josuah Demangeon <[email protected]> | |
+ | |
+OpenBSD 6.3 April 19, 2018 OpenBSD 6.3 |