mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 03:27:44 +00:00
docs: remove custom files
This commit is contained in:
parent
e3558ff3a8
commit
9618a2f21d
105 changed files with 115 additions and 521 deletions
2
docs/.gitignore
vendored
2
docs/.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
book
|
||||
_generated
|
||||
src/utils
|
||||
|
|
|
@ -4,17 +4,9 @@
|
|||
|
||||
import os
|
||||
|
||||
with open('src/utils/index.md', 'w') as index:
|
||||
with open('src/SUMMARY.md', 'w') as summary:
|
||||
summary.write("# Summary\n\n")
|
||||
summary.write("[Introduction](index.md)\n")
|
||||
summary.write("* [Contributing](contributing.md)\n")
|
||||
summary.write("* [Utils](utils/index.md)\n")
|
||||
index.write("# Utils\n\n")
|
||||
for d in sorted(os.listdir('../src/uu')):
|
||||
with open(f"src/utils/{d}.md", 'w') as f:
|
||||
f.write(f"# {d}\n\n")
|
||||
f.write(f"{{{{ #include ../../_generated/{d}-help.md }}}}\n")
|
||||
print(f"Created docs/src/utils/{d}.md")
|
||||
summary.write(f" * [{d}](utils/{d}.md)\n")
|
||||
index.write(f"* [{d}](./{d}.md)\n")
|
||||
with open('src/SUMMARY.md', 'w') as summary:
|
||||
summary.write("# Summary\n\n")
|
||||
summary.write("[Introduction](index.md)\n")
|
||||
summary.write("* [Contributing](contributing.md)\n")
|
||||
for d in sorted(os.listdir('../src/uu')):
|
||||
summary.write(f"* [{d}](utils/{d}.md)\n")
|
|
@ -6,104 +6,103 @@
|
|||
|
||||
# Reference
|
||||
* [Multi-call binary](multicall.md)
|
||||
* [Utils](utils/index.md)
|
||||
* [arch](utils/arch.md)
|
||||
* [base32](utils/base32.md)
|
||||
* [base64](utils/base64.md)
|
||||
* [basename](utils/basename.md)
|
||||
* [basenc](utils/basenc.md)
|
||||
* [cat](utils/cat.md)
|
||||
* [chcon](utils/chcon.md)
|
||||
* [chgrp](utils/chgrp.md)
|
||||
* [chmod](utils/chmod.md)
|
||||
* [chown](utils/chown.md)
|
||||
* [chroot](utils/chroot.md)
|
||||
* [cksum](utils/cksum.md)
|
||||
* [comm](utils/comm.md)
|
||||
* [cp](utils/cp.md)
|
||||
* [csplit](utils/csplit.md)
|
||||
* [cut](utils/cut.md)
|
||||
* [date](utils/date.md)
|
||||
* [dd](utils/dd.md)
|
||||
* [df](utils/df.md)
|
||||
* [dircolors](utils/dircolors.md)
|
||||
* [dirname](utils/dirname.md)
|
||||
* [du](utils/du.md)
|
||||
* [echo](utils/echo.md)
|
||||
* [env](utils/env.md)
|
||||
* [expand](utils/expand.md)
|
||||
* [expr](utils/expr.md)
|
||||
* [factor](utils/factor.md)
|
||||
* [false](utils/false.md)
|
||||
* [fmt](utils/fmt.md)
|
||||
* [fold](utils/fold.md)
|
||||
* [groups](utils/groups.md)
|
||||
* [hashsum](utils/hashsum.md)
|
||||
* [head](utils/head.md)
|
||||
* [hostid](utils/hostid.md)
|
||||
* [hostname](utils/hostname.md)
|
||||
* [id](utils/id.md)
|
||||
* [install](utils/install.md)
|
||||
* [join](utils/join.md)
|
||||
* [kill](utils/kill.md)
|
||||
* [link](utils/link.md)
|
||||
* [ln](utils/ln.md)
|
||||
* [logname](utils/logname.md)
|
||||
* [ls](utils/ls.md)
|
||||
* [mkdir](utils/mkdir.md)
|
||||
* [mkfifo](utils/mkfifo.md)
|
||||
* [mknod](utils/mknod.md)
|
||||
* [mktemp](utils/mktemp.md)
|
||||
* [more](utils/more.md)
|
||||
* [mv](utils/mv.md)
|
||||
* [nice](utils/nice.md)
|
||||
* [nl](utils/nl.md)
|
||||
* [nohup](utils/nohup.md)
|
||||
* [nproc](utils/nproc.md)
|
||||
* [numfmt](utils/numfmt.md)
|
||||
* [od](utils/od.md)
|
||||
* [paste](utils/paste.md)
|
||||
* [pathchk](utils/pathchk.md)
|
||||
* [pinky](utils/pinky.md)
|
||||
* [pr](utils/pr.md)
|
||||
* [printenv](utils/printenv.md)
|
||||
* [printf](utils/printf.md)
|
||||
* [ptx](utils/ptx.md)
|
||||
* [pwd](utils/pwd.md)
|
||||
* [readlink](utils/readlink.md)
|
||||
* [realpath](utils/realpath.md)
|
||||
* [relpath](utils/relpath.md)
|
||||
* [rm](utils/rm.md)
|
||||
* [rmdir](utils/rmdir.md)
|
||||
* [runcon](utils/runcon.md)
|
||||
* [seq](utils/seq.md)
|
||||
* [shred](utils/shred.md)
|
||||
* [shuf](utils/shuf.md)
|
||||
* [sleep](utils/sleep.md)
|
||||
* [sort](utils/sort.md)
|
||||
* [split](utils/split.md)
|
||||
* [stat](utils/stat.md)
|
||||
* [stdbuf](utils/stdbuf.md)
|
||||
* [sum](utils/sum.md)
|
||||
* [sync](utils/sync.md)
|
||||
* [tac](utils/tac.md)
|
||||
* [tail](utils/tail.md)
|
||||
* [tee](utils/tee.md)
|
||||
* [test](utils/test.md)
|
||||
* [timeout](utils/timeout.md)
|
||||
* [touch](utils/touch.md)
|
||||
* [tr](utils/tr.md)
|
||||
* [true](utils/true.md)
|
||||
* [truncate](utils/truncate.md)
|
||||
* [tsort](utils/tsort.md)
|
||||
* [tty](utils/tty.md)
|
||||
* [uname](utils/uname.md)
|
||||
* [unexpand](utils/unexpand.md)
|
||||
* [uniq](utils/uniq.md)
|
||||
* [unlink](utils/unlink.md)
|
||||
* [uptime](utils/uptime.md)
|
||||
* [users](utils/users.md)
|
||||
* [wc](utils/wc.md)
|
||||
* [who](utils/who.md)
|
||||
* [whoami](utils/whoami.md)
|
||||
* [yes](utils/yes.md)
|
||||
* [arch](utils/arch.md)
|
||||
* [base32](utils/base32.md)
|
||||
* [base64](utils/base64.md)
|
||||
* [basename](utils/basename.md)
|
||||
* [basenc](utils/basenc.md)
|
||||
* [cat](utils/cat.md)
|
||||
* [chcon](utils/chcon.md)
|
||||
* [chgrp](utils/chgrp.md)
|
||||
* [chmod](utils/chmod.md)
|
||||
* [chown](utils/chown.md)
|
||||
* [chroot](utils/chroot.md)
|
||||
* [cksum](utils/cksum.md)
|
||||
* [comm](utils/comm.md)
|
||||
* [cp](utils/cp.md)
|
||||
* [csplit](utils/csplit.md)
|
||||
* [cut](utils/cut.md)
|
||||
* [date](utils/date.md)
|
||||
* [dd](utils/dd.md)
|
||||
* [df](utils/df.md)
|
||||
* [dircolors](utils/dircolors.md)
|
||||
* [dirname](utils/dirname.md)
|
||||
* [du](utils/du.md)
|
||||
* [echo](utils/echo.md)
|
||||
* [env](utils/env.md)
|
||||
* [expand](utils/expand.md)
|
||||
* [expr](utils/expr.md)
|
||||
* [factor](utils/factor.md)
|
||||
* [false](utils/false.md)
|
||||
* [fmt](utils/fmt.md)
|
||||
* [fold](utils/fold.md)
|
||||
* [groups](utils/groups.md)
|
||||
* [hashsum](utils/hashsum.md)
|
||||
* [head](utils/head.md)
|
||||
* [hostid](utils/hostid.md)
|
||||
* [hostname](utils/hostname.md)
|
||||
* [id](utils/id.md)
|
||||
* [install](utils/install.md)
|
||||
* [join](utils/join.md)
|
||||
* [kill](utils/kill.md)
|
||||
* [link](utils/link.md)
|
||||
* [ln](utils/ln.md)
|
||||
* [logname](utils/logname.md)
|
||||
* [ls](utils/ls.md)
|
||||
* [mkdir](utils/mkdir.md)
|
||||
* [mkfifo](utils/mkfifo.md)
|
||||
* [mknod](utils/mknod.md)
|
||||
* [mktemp](utils/mktemp.md)
|
||||
* [more](utils/more.md)
|
||||
* [mv](utils/mv.md)
|
||||
* [nice](utils/nice.md)
|
||||
* [nl](utils/nl.md)
|
||||
* [nohup](utils/nohup.md)
|
||||
* [nproc](utils/nproc.md)
|
||||
* [numfmt](utils/numfmt.md)
|
||||
* [od](utils/od.md)
|
||||
* [paste](utils/paste.md)
|
||||
* [pathchk](utils/pathchk.md)
|
||||
* [pinky](utils/pinky.md)
|
||||
* [pr](utils/pr.md)
|
||||
* [printenv](utils/printenv.md)
|
||||
* [printf](utils/printf.md)
|
||||
* [ptx](utils/ptx.md)
|
||||
* [pwd](utils/pwd.md)
|
||||
* [readlink](utils/readlink.md)
|
||||
* [realpath](utils/realpath.md)
|
||||
* [relpath](utils/relpath.md)
|
||||
* [rm](utils/rm.md)
|
||||
* [rmdir](utils/rmdir.md)
|
||||
* [runcon](utils/runcon.md)
|
||||
* [seq](utils/seq.md)
|
||||
* [shred](utils/shred.md)
|
||||
* [shuf](utils/shuf.md)
|
||||
* [sleep](utils/sleep.md)
|
||||
* [sort](utils/sort.md)
|
||||
* [split](utils/split.md)
|
||||
* [stat](utils/stat.md)
|
||||
* [stdbuf](utils/stdbuf.md)
|
||||
* [sum](utils/sum.md)
|
||||
* [sync](utils/sync.md)
|
||||
* [tac](utils/tac.md)
|
||||
* [tail](utils/tail.md)
|
||||
* [tee](utils/tee.md)
|
||||
* [test](utils/test.md)
|
||||
* [timeout](utils/timeout.md)
|
||||
* [touch](utils/touch.md)
|
||||
* [tr](utils/tr.md)
|
||||
* [true](utils/true.md)
|
||||
* [truncate](utils/truncate.md)
|
||||
* [tsort](utils/tsort.md)
|
||||
* [tty](utils/tty.md)
|
||||
* [uname](utils/uname.md)
|
||||
* [unexpand](utils/unexpand.md)
|
||||
* [uniq](utils/uniq.md)
|
||||
* [unlink](utils/unlink.md)
|
||||
* [uptime](utils/uptime.md)
|
||||
* [users](utils/users.md)
|
||||
* [wc](utils/wc.md)
|
||||
* [who](utils/who.md)
|
||||
* [whoami](utils/whoami.md)
|
||||
* [yes](utils/yes.md)
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
# arch
|
||||
|
||||
{{ #include ../../_generated/arch-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# base32
|
||||
|
||||
{{ #include ../../_generated/base32-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# base64
|
||||
|
||||
{{ #include ../../_generated/base64-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# basename
|
||||
|
||||
{{ #include ../../_generated/basename-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# basenc
|
||||
|
||||
{{ #include ../../_generated/basenc-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# cat
|
||||
|
||||
{{ #include ../../_generated/cat-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# chcon
|
||||
|
||||
{{ #include ../../_generated/chcon-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# chgrp
|
||||
|
||||
{{ #include ../../_generated/chgrp-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# chmod
|
||||
|
||||
{{ #include ../../_generated/chmod-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# chown
|
||||
|
||||
{{ #include ../../_generated/chown-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# chroot
|
||||
|
||||
{{ #include ../../_generated/chroot-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# cksum
|
||||
|
||||
{{ #include ../../_generated/cksum-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# comm
|
||||
|
||||
{{ #include ../../_generated/comm-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# cp
|
||||
|
||||
{{ #include ../../_generated/cp-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# csplit
|
||||
|
||||
{{ #include ../../_generated/csplit-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# cut
|
||||
|
||||
{{ #include ../../_generated/cut-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# date
|
||||
|
||||
{{ #include ../../_generated/date-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# dd
|
||||
|
||||
{{ #include ../../_generated/dd-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# df
|
||||
|
||||
{{ #include ../../_generated/df-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# dircolors
|
||||
|
||||
{{ #include ../../_generated/dircolors-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# dirname
|
||||
|
||||
{{ #include ../../_generated/dirname-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# du
|
||||
|
||||
{{ #include ../../_generated/du-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# echo
|
||||
|
||||
{{ #include ../../_generated/echo-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# env
|
||||
|
||||
{{ #include ../../_generated/env-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# expand
|
||||
|
||||
{{ #include ../../_generated/expand-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# expr
|
||||
|
||||
{{ #include ../../_generated/expr-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# factor
|
||||
|
||||
{{ #include ../../_generated/factor-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# false
|
||||
|
||||
{{ #include ../../_generated/false-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# fmt
|
||||
|
||||
{{ #include ../../_generated/fmt-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# fold
|
||||
|
||||
{{ #include ../../_generated/fold-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# groups
|
||||
|
||||
{{ #include ../../_generated/groups-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# hashsum
|
||||
|
||||
{{ #include ../../_generated/hashsum-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# head
|
||||
|
||||
{{ #include ../../_generated/head-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# hostid
|
||||
|
||||
{{ #include ../../_generated/hostid-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# hostname
|
||||
|
||||
{{ #include ../../_generated/hostname-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# id
|
||||
|
||||
{{ #include ../../_generated/id-help.md }}
|
|
@ -1,102 +0,0 @@
|
|||
# Utils
|
||||
|
||||
* [arch](./arch.md)
|
||||
* [base32](./base32.md)
|
||||
* [base64](./base64.md)
|
||||
* [basename](./basename.md)
|
||||
* [basenc](./basenc.md)
|
||||
* [cat](./cat.md)
|
||||
* [chcon](./chcon.md)
|
||||
* [chgrp](./chgrp.md)
|
||||
* [chmod](./chmod.md)
|
||||
* [chown](./chown.md)
|
||||
* [chroot](./chroot.md)
|
||||
* [cksum](./cksum.md)
|
||||
* [comm](./comm.md)
|
||||
* [cp](./cp.md)
|
||||
* [csplit](./csplit.md)
|
||||
* [cut](./cut.md)
|
||||
* [date](./date.md)
|
||||
* [dd](./dd.md)
|
||||
* [df](./df.md)
|
||||
* [dircolors](./dircolors.md)
|
||||
* [dirname](./dirname.md)
|
||||
* [du](./du.md)
|
||||
* [echo](./echo.md)
|
||||
* [env](./env.md)
|
||||
* [expand](./expand.md)
|
||||
* [expr](./expr.md)
|
||||
* [factor](./factor.md)
|
||||
* [false](./false.md)
|
||||
* [fmt](./fmt.md)
|
||||
* [fold](./fold.md)
|
||||
* [groups](./groups.md)
|
||||
* [hashsum](./hashsum.md)
|
||||
* [head](./head.md)
|
||||
* [hostid](./hostid.md)
|
||||
* [hostname](./hostname.md)
|
||||
* [id](./id.md)
|
||||
* [install](./install.md)
|
||||
* [join](./join.md)
|
||||
* [kill](./kill.md)
|
||||
* [link](./link.md)
|
||||
* [ln](./ln.md)
|
||||
* [logname](./logname.md)
|
||||
* [ls](./ls.md)
|
||||
* [mkdir](./mkdir.md)
|
||||
* [mkfifo](./mkfifo.md)
|
||||
* [mknod](./mknod.md)
|
||||
* [mktemp](./mktemp.md)
|
||||
* [more](./more.md)
|
||||
* [mv](./mv.md)
|
||||
* [nice](./nice.md)
|
||||
* [nl](./nl.md)
|
||||
* [nohup](./nohup.md)
|
||||
* [nproc](./nproc.md)
|
||||
* [numfmt](./numfmt.md)
|
||||
* [od](./od.md)
|
||||
* [paste](./paste.md)
|
||||
* [pathchk](./pathchk.md)
|
||||
* [pinky](./pinky.md)
|
||||
* [pr](./pr.md)
|
||||
* [printenv](./printenv.md)
|
||||
* [printf](./printf.md)
|
||||
* [ptx](./ptx.md)
|
||||
* [pwd](./pwd.md)
|
||||
* [readlink](./readlink.md)
|
||||
* [realpath](./realpath.md)
|
||||
* [relpath](./relpath.md)
|
||||
* [rm](./rm.md)
|
||||
* [rmdir](./rmdir.md)
|
||||
* [runcon](./runcon.md)
|
||||
* [seq](./seq.md)
|
||||
* [shred](./shred.md)
|
||||
* [shuf](./shuf.md)
|
||||
* [sleep](./sleep.md)
|
||||
* [sort](./sort.md)
|
||||
* [split](./split.md)
|
||||
* [stat](./stat.md)
|
||||
* [stdbuf](./stdbuf.md)
|
||||
* [sum](./sum.md)
|
||||
* [sync](./sync.md)
|
||||
* [tac](./tac.md)
|
||||
* [tail](./tail.md)
|
||||
* [tee](./tee.md)
|
||||
* [test](./test.md)
|
||||
* [timeout](./timeout.md)
|
||||
* [touch](./touch.md)
|
||||
* [tr](./tr.md)
|
||||
* [true](./true.md)
|
||||
* [truncate](./truncate.md)
|
||||
* [tsort](./tsort.md)
|
||||
* [tty](./tty.md)
|
||||
* [uname](./uname.md)
|
||||
* [unexpand](./unexpand.md)
|
||||
* [uniq](./uniq.md)
|
||||
* [unlink](./unlink.md)
|
||||
* [uptime](./uptime.md)
|
||||
* [users](./users.md)
|
||||
* [wc](./wc.md)
|
||||
* [who](./who.md)
|
||||
* [whoami](./whoami.md)
|
||||
* [yes](./yes.md)
|
|
@ -1,3 +0,0 @@
|
|||
# install
|
||||
|
||||
{{ #include ../../_generated/install-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# join
|
||||
|
||||
{{ #include ../../_generated/join-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# kill
|
||||
|
||||
{{ #include ../../_generated/kill-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# link
|
||||
|
||||
{{ #include ../../_generated/link-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# ln
|
||||
|
||||
{{ #include ../../_generated/ln-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# logname
|
||||
|
||||
{{ #include ../../_generated/logname-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# ls
|
||||
|
||||
{{ #include ../../_generated/ls-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# mkdir
|
||||
|
||||
{{ #include ../../_generated/mkdir-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# mkfifo
|
||||
|
||||
{{ #include ../../_generated/mkfifo-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# mknod
|
||||
|
||||
{{ #include ../../_generated/mknod-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# mktemp
|
||||
|
||||
{{ #include ../../_generated/mktemp-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# more
|
||||
|
||||
{{ #include ../../_generated/more-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# mv
|
||||
|
||||
{{ #include ../../_generated/mv-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# nice
|
||||
|
||||
{{ #include ../../_generated/nice-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# nl
|
||||
|
||||
{{ #include ../../_generated/nl-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# nohup
|
||||
|
||||
{{ #include ../../_generated/nohup-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# nproc
|
||||
|
||||
{{ #include ../../_generated/nproc-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# numfmt
|
||||
|
||||
{{ #include ../../_generated/numfmt-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# od
|
||||
|
||||
{{ #include ../../_generated/od-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# paste
|
||||
|
||||
{{ #include ../../_generated/paste-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# pathchk
|
||||
|
||||
{{ #include ../../_generated/pathchk-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# pinky
|
||||
|
||||
{{ #include ../../_generated/pinky-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# pr
|
||||
|
||||
{{ #include ../../_generated/pr-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# printenv
|
||||
|
||||
{{ #include ../../_generated/printenv-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# printf
|
||||
|
||||
{{ #include ../../_generated/printf-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# ptx
|
||||
|
||||
{{ #include ../../_generated/ptx-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# pwd
|
||||
|
||||
{{ #include ../../_generated/pwd-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# readlink
|
||||
|
||||
{{ #include ../../_generated/readlink-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# realpath
|
||||
|
||||
{{ #include ../../_generated/realpath-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# relpath
|
||||
|
||||
{{ #include ../../_generated/relpath-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# rm
|
||||
|
||||
{{ #include ../../_generated/rm-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# rmdir
|
||||
|
||||
{{ #include ../../_generated/rmdir-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# runcon
|
||||
|
||||
{{ #include ../../_generated/runcon-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# seq
|
||||
|
||||
{{ #include ../../_generated/seq-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# shred
|
||||
|
||||
{{ #include ../../_generated/shred-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# shuf
|
||||
|
||||
{{ #include ../../_generated/shuf-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# sleep
|
||||
|
||||
{{ #include ../../_generated/sleep-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# sort
|
||||
|
||||
{{ #include ../../_generated/sort-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# split
|
||||
|
||||
{{ #include ../../_generated/split-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# stat
|
||||
|
||||
{{ #include ../../_generated/stat-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# stdbuf
|
||||
|
||||
{{ #include ../../_generated/stdbuf-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# sum
|
||||
|
||||
{{ #include ../../_generated/sum-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# sync
|
||||
|
||||
{{ #include ../../_generated/sync-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# tac
|
||||
|
||||
{{ #include ../../_generated/tac-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# tail
|
||||
|
||||
{{ #include ../../_generated/tail-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# tee
|
||||
|
||||
{{ #include ../../_generated/tee-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# test
|
||||
|
||||
{{ #include ../../_generated/test-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# timeout
|
||||
|
||||
{{ #include ../../_generated/timeout-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# touch
|
||||
|
||||
{{ #include ../../_generated/touch-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# tr
|
||||
|
||||
{{ #include ../../_generated/tr-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# true
|
||||
|
||||
{{ #include ../../_generated/true-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# truncate
|
||||
|
||||
{{ #include ../../_generated/truncate-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# tsort
|
||||
|
||||
{{ #include ../../_generated/tsort-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# tty
|
||||
|
||||
{{ #include ../../_generated/tty-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# uname
|
||||
|
||||
{{ #include ../../_generated/uname-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# unexpand
|
||||
|
||||
{{ #include ../../_generated/unexpand-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# uniq
|
||||
|
||||
{{ #include ../../_generated/uniq-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# unlink
|
||||
|
||||
{{ #include ../../_generated/unlink-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# uptime
|
||||
|
||||
{{ #include ../../_generated/uptime-help.md }}
|
|
@ -1,3 +0,0 @@
|
|||
# users
|
||||
|
||||
{{ #include ../../_generated/users-help.md }}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue