├── .gitignore ├── Makefile ├── OPENBSD_BRANCH ├── README ├── README.sh ├── bin ├── Makefile ├── Makefile.inc ├── cat │ ├── Makefile │ ├── cat.1 │ └── cat.c ├── chmod │ ├── Makefile │ ├── PORT_NOTES │ ├── chflags.1 │ ├── chgrp.1 │ ├── chmod.1 │ ├── chmod.c │ └── chown.8 ├── cp │ ├── Makefile │ ├── cp.1 │ ├── cp.c │ ├── extern.h │ └── utils.c ├── date │ ├── Makefile │ ├── date.1 │ └── date.c ├── dd │ ├── Makefile │ ├── PORT_NOTES │ ├── args.c │ ├── conv.c │ ├── conv_tab.c │ ├── dd.1 │ ├── dd.c │ ├── dd.h │ ├── extern.h │ ├── misc.c │ └── position.c ├── df │ ├── Makefile │ ├── PORT_NOTES │ ├── df.1 │ ├── df.c │ ├── ext2fs_df.c │ └── ffs_df.c ├── domainname │ ├── Makefile │ ├── domainname.1 │ └── domainname.c ├── echo │ ├── Makefile │ ├── echo.1 │ └── echo.c ├── ed │ ├── Makefile │ ├── POSIX │ ├── README │ ├── USD.doc │ │ ├── 09.edtut │ │ │ ├── Makefile │ │ │ ├── e.mac │ │ │ ├── e0 │ │ │ ├── e1 │ │ │ ├── e2 │ │ │ ├── e3 │ │ │ ├── e4 │ │ │ ├── e5 │ │ │ ├── e6 │ │ │ └── e7 │ │ └── 10.edadv │ │ │ ├── Makefile │ │ │ ├── ae.mac │ │ │ ├── ae0 │ │ │ ├── ae1 │ │ │ ├── ae2 │ │ │ ├── ae3 │ │ │ ├── ae4 │ │ │ ├── ae5 │ │ │ ├── ae6 │ │ │ ├── ae7 │ │ │ └── ae9 │ ├── buf.c │ ├── ed.1 │ ├── ed.h │ ├── glbl.c │ ├── io.c │ ├── main.c │ ├── re.c │ ├── sub.c │ ├── test │ │ ├── =.err │ │ ├── Makefile │ │ ├── README │ │ ├── TODO │ │ ├── a.d │ │ ├── a.r │ │ ├── a.t │ │ ├── a1.err │ │ ├── a2.err │ │ ├── addr.d │ │ ├── addr.r │ │ ├── addr.t │ │ ├── addr1.err │ │ ├── addr2.err │ │ ├── ascii.d │ │ ├── ascii.r │ │ ├── ascii.t │ │ ├── bang1.d │ │ ├── bang1.err │ │ ├── bang1.r │ │ ├── bang1.t │ │ ├── bang2.err │ │ ├── c.d │ │ ├── c.r │ │ ├── c.t │ │ ├── c1.err │ │ ├── c2.err │ │ ├── ckscripts.sh │ │ ├── d.d │ │ ├── d.err │ │ ├── d.r │ │ ├── d.t │ │ ├── e1.d │ │ ├── e1.err │ │ ├── e1.r │ │ ├── e1.t │ │ ├── e2.d │ │ ├── e2.err │ │ ├── e2.r │ │ ├── e2.t │ │ ├── e3.d │ │ ├── e3.err │ │ ├── e3.r │ │ ├── e3.t │ │ ├── e4.d │ │ ├── e4.r │ │ ├── e4.t │ │ ├── f1.err │ │ ├── f2.err │ │ ├── g1.d │ │ ├── g1.err │ │ ├── g1.r │ │ ├── g1.t │ │ ├── g2.d │ │ ├── g2.err │ │ ├── g2.r │ │ ├── g2.t │ │ ├── g3.d │ │ ├── g3.err │ │ ├── g3.r │ │ ├── g3.t │ │ ├── g4.d │ │ ├── g4.r │ │ ├── g4.t │ │ ├── g5.d │ │ ├── g5.r │ │ ├── g5.t │ │ ├── h.err │ │ ├── i.d │ │ ├── i.r │ │ ├── i.t │ │ ├── i1.err │ │ ├── i2.err │ │ ├── i3.err │ │ ├── j.d │ │ ├── j.r │ │ ├── j.t │ │ ├── k.d │ │ ├── k.r │ │ ├── k.t │ │ ├── k1.err │ │ ├── k2.err │ │ ├── k3.err │ │ ├── k4.err │ │ ├── l.d │ │ ├── l.r │ │ ├── l.t │ │ ├── m.d │ │ ├── m.err │ │ ├── m.r │ │ ├── m.t │ │ ├── mkscripts.sh │ │ ├── n.d │ │ ├── n.r │ │ ├── n.t │ │ ├── nl.err │ │ ├── nl1.d │ │ ├── nl1.r │ │ ├── nl1.t │ │ ├── nl2.d │ │ ├── nl2.r │ │ ├── nl2.t │ │ ├── p.d │ │ ├── p.r │ │ ├── p.t │ │ ├── q.d │ │ ├── q.r │ │ ├── q.t │ │ ├── q1.err │ │ ├── r1.d │ │ ├── r1.err │ │ ├── r1.r │ │ ├── r1.t │ │ ├── r2.d │ │ ├── r2.err │ │ ├── r2.r │ │ ├── r2.t │ │ ├── r3.d │ │ ├── r3.r │ │ ├── r3.t │ │ ├── s1.d │ │ ├── s1.err │ │ ├── s1.r │ │ ├── s1.t │ │ ├── s10.err │ │ ├── s2.d │ │ ├── s2.err │ │ ├── s2.r │ │ ├── s2.t │ │ ├── s3.d │ │ ├── s3.err │ │ ├── s3.r │ │ ├── s3.t │ │ ├── s4.err │ │ ├── s5.err │ │ ├── s6.err │ │ ├── s7.err │ │ ├── s8.err │ │ ├── s9.err │ │ ├── t.d │ │ ├── t.r │ │ ├── t.t │ │ ├── t1.d │ │ ├── t1.err │ │ ├── t1.r │ │ ├── t1.t │ │ ├── t2.d │ │ ├── t2.err │ │ ├── t2.r │ │ ├── t2.t │ │ ├── u.d │ │ ├── u.err │ │ ├── u.r │ │ ├── u.t │ │ ├── v.d │ │ ├── v.r │ │ ├── v.t │ │ ├── w.d │ │ ├── w.r │ │ ├── w.t │ │ ├── w1.err │ │ ├── w2.err │ │ ├── w3.err │ │ ├── x.err │ │ └── z.err │ └── undo.c ├── expr │ ├── Makefile │ ├── expr.1 │ └── expr.c ├── hostname │ ├── Makefile │ ├── hostname.1 │ └── hostname.c ├── kill │ ├── Makefile │ ├── kill.1 │ └── kill.c ├── ksh │ ├── CONTRIBUTORS │ ├── LEGAL │ ├── Makefile │ ├── NOTES │ ├── PROJECTS │ ├── README │ ├── alloc.c │ ├── c_ksh.c │ ├── c_sh.c │ ├── c_test.c │ ├── c_test.h │ ├── c_ulimit.c │ ├── config.h │ ├── edit.c │ ├── edit.h │ ├── emacs.c │ ├── eval.c │ ├── exec.c │ ├── expand.h │ ├── expr.c │ ├── history.c │ ├── io.c │ ├── jobs.c │ ├── ksh.1 │ ├── lex.c │ ├── lex.h │ ├── mail.c │ ├── main.c │ ├── misc.c │ ├── path.c │ ├── sh.1 │ ├── sh.h │ ├── shf.c │ ├── shf.h │ ├── syn.c │ ├── table.c │ ├── table.h │ ├── trap.c │ ├── tree.c │ ├── tree.h │ ├── tty.c │ ├── tty.h │ ├── var.c │ ├── version.c │ └── vi.c ├── ln │ ├── Makefile │ ├── ln.1 │ ├── ln.c │ └── symlink.7 ├── ls │ ├── Makefile │ ├── PORT_NOTES │ ├── cmp.c │ ├── extern.h │ ├── ls.1 │ ├── ls.c │ ├── ls.h │ ├── main.c │ ├── print.c │ ├── utf8.c │ └── util.c ├── md5 │ ├── Makefile │ ├── cksum.1 │ ├── crc.c │ ├── crc.h │ ├── md5.1 │ └── md5.c ├── mkdir │ ├── Makefile │ ├── mkdir.1 │ └── mkdir.c ├── mv │ ├── Makefile │ ├── cp.c │ ├── mv.1 │ ├── mv.c │ └── rm.c ├── pax │ ├── Makefile │ ├── ar_io.c │ ├── ar_subs.c │ ├── buf_subs.c │ ├── cache.c │ ├── cpio.1 │ ├── cpio.c │ ├── cpio.h │ ├── extern.h │ ├── file_subs.c │ ├── ftree.c │ ├── gen_subs.c │ ├── getoldopt.c │ ├── options.c │ ├── pat_rep.c │ ├── pax.1 │ ├── pax.c │ ├── pax.h │ ├── sel_subs.c │ ├── tables.c │ ├── tar.1 │ ├── tar.c │ ├── tar.h │ └── tty_subs.c ├── pwd │ ├── Makefile │ ├── pwd.1 │ └── pwd.c ├── rm │ ├── Makefile │ ├── rm.1 │ └── rm.c ├── rmdir │ ├── Makefile │ ├── rmdir.1 │ └── rmdir.c ├── sleep │ ├── Makefile │ ├── sleep.1 │ └── sleep.c ├── stty │ ├── Makefile │ ├── cchar.c │ ├── extern.h │ ├── gfmt.c │ ├── key.c │ ├── modes.c │ ├── print.c │ ├── stty.1 │ ├── stty.c │ └── stty.h ├── sync │ ├── Makefile │ ├── sync.8 │ └── sync.c └── test │ ├── Makefile │ ├── test.1 │ └── test.c ├── config.h.in ├── config.mk.in ├── configure ├── configure.ac ├── import.sh ├── include ├── arpa │ └── tftp.h ├── blf.h ├── compat.h ├── db.h ├── err.h ├── errno.h ├── fcntl.h ├── fts.h ├── getopt.h ├── glob.h ├── grp.h ├── imsg.h ├── libgen.h ├── limits.h ├── md5.h ├── ndbm.h ├── netinet │ └── in.h ├── netinet6 │ └── in6.h ├── ohash.h ├── paths.h ├── poll.h ├── pwd.h ├── pwd.h.1 ├── readpassphrase.h ├── regex.h ├── resolv.h ├── rmd160.h ├── sha1.h ├── sha2.h ├── signal.h ├── stdarg.h ├── stdio.h ├── stdlib.h ├── string.h ├── sys │ ├── mount.h │ ├── proc.h │ ├── queue.h │ ├── stat.h │ ├── sysctl.h │ ├── time.h │ ├── tree.h │ └── types.h ├── termios.h ├── unistd.h ├── util.h ├── vis.h └── wchar.h ├── install-sh ├── lib ├── Makefile ├── libopenbsd │ ├── Makefile │ ├── Makefile.inc │ ├── compat │ │ ├── Makefile.inc │ │ ├── closefrom.c │ │ ├── fgetln.c │ │ ├── fgetwln.c │ │ ├── freezero.c │ │ ├── getdtablecount.c │ │ ├── getentropy_linux.c │ │ ├── getfsstat.c │ │ ├── issetugid.c │ │ ├── open.c │ │ ├── pledge-noop.c │ │ ├── setproctitle.c │ │ └── statfs.c │ ├── crypt │ │ ├── Makefile.inc │ │ ├── arc4random.3 │ │ ├── arc4random.c │ │ ├── arc4random.h │ │ ├── arc4random_linux.h │ │ ├── arc4random_uniform.c │ │ ├── bcrypt.c │ │ ├── blowfish.3 │ │ ├── blowfish.c │ │ ├── chacha_private.h │ │ ├── crypt.3 │ │ ├── crypt.c │ │ ├── crypt_checkpass.3 │ │ └── cryptutil.c │ ├── db │ │ ├── Makefile.inc │ │ ├── README │ │ ├── btree │ │ │ ├── bt_close.c │ │ │ ├── bt_conv.c │ │ │ ├── bt_debug.c │ │ │ ├── bt_delete.c │ │ │ ├── bt_get.c │ │ │ ├── bt_open.c │ │ │ ├── bt_overflow.c │ │ │ ├── bt_page.c │ │ │ ├── bt_put.c │ │ │ ├── bt_search.c │ │ │ ├── bt_seq.c │ │ │ ├── bt_split.c │ │ │ ├── bt_utils.c │ │ │ ├── btree.h │ │ │ └── extern.h │ │ ├── changelog │ │ ├── db │ │ │ └── db.c │ │ ├── hash │ │ │ ├── README │ │ │ ├── extern.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── hash_bigkey.c │ │ │ ├── hash_buf.c │ │ │ ├── hash_func.c │ │ │ ├── hash_log2.c │ │ │ ├── hash_page.c │ │ │ ├── ndbm.c │ │ │ └── page.h │ │ ├── man │ │ │ ├── btree.3 │ │ │ ├── dbopen.3 │ │ │ ├── hash.3 │ │ │ ├── ndbm.3 │ │ │ └── recno.3 │ │ ├── mpool │ │ │ ├── README │ │ │ └── mpool.c │ │ └── recno │ │ │ ├── extern.h │ │ │ ├── rec_close.c │ │ │ ├── rec_delete.c │ │ │ ├── rec_get.c │ │ │ ├── rec_open.c │ │ │ ├── rec_put.c │ │ │ ├── rec_search.c │ │ │ ├── rec_seq.c │ │ │ ├── rec_utils.c │ │ │ └── recno.h │ ├── gen │ │ ├── Makefile.inc │ │ ├── basename.3 │ │ ├── basename.c │ │ ├── charclass.h │ │ ├── devname.3 │ │ ├── devname.c │ │ ├── dirname.3 │ │ ├── dirname.c │ │ ├── errc.c │ │ ├── fts.3 │ │ ├── fts.c │ │ ├── getbsize.3 │ │ ├── getbsize.c │ │ ├── getcap.3 │ │ ├── getcap.c │ │ ├── getmntinfo.3 │ │ ├── getmntinfo.c │ │ ├── getprogname.3 │ │ ├── getprogname.c │ │ ├── glob.3 │ │ ├── glob.c │ │ ├── pw_dup.3 │ │ ├── pw_dup.c │ │ ├── pwcache.3 │ │ ├── pwcache.c │ │ ├── readpassphrase.3 │ │ ├── readpassphrase.c │ │ ├── setmode.3 │ │ ├── setmode.c │ │ ├── setproctitle.3 │ │ ├── setprogname.c │ │ ├── siglist.c │ │ ├── signame.c │ │ ├── unvis.3 │ │ ├── unvis.c │ │ ├── verrc.c │ │ ├── vis.3 │ │ ├── vis.c │ │ ├── vwarnc.c │ │ └── warnc.c │ ├── hash │ │ ├── Makefile.inc │ │ ├── helper.c │ │ ├── md5.3 │ │ ├── md5.c │ │ ├── rmd160.3 │ │ ├── rmd160.c │ │ ├── sha1.3 │ │ ├── sha1.c │ │ ├── sha2.3 │ │ └── sha2.c │ ├── hidden │ │ ├── blf.h │ │ ├── db.h │ │ ├── ndbm.h │ │ ├── pwd.h │ │ └── stdlib.h │ ├── include │ │ ├── mpool.h │ │ ├── namespace.h │ │ └── thread_private.h │ ├── libopenbsd.mk │ ├── mkfile │ ├── net │ │ ├── Makefile.inc │ │ └── base64.c │ ├── regex │ │ ├── COPYRIGHT │ │ ├── Makefile.inc │ │ ├── cclass.h │ │ ├── cname.h │ │ ├── engine.c │ │ ├── re_format.7 │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regex.3 │ │ ├── regex2.h │ │ ├── regexec.c │ │ ├── regfree.c │ │ └── utils.h │ ├── stdio │ │ ├── Makefile.inc │ │ └── fgetwln.3 │ ├── stdlib │ │ ├── Makefile.inc │ │ ├── getopt.3 │ │ ├── getopt_long.3 │ │ ├── getopt_long.c │ │ ├── heapsort.c │ │ ├── malloc.3 │ │ ├── merge.c │ │ ├── qsort.c │ │ ├── radixsort.c │ │ ├── random.3 │ │ ├── random.c │ │ ├── reallocarray.c │ │ ├── recallocarray.c │ │ ├── strtod.3 │ │ ├── strtoimax.c │ │ ├── strtonum.3 │ │ ├── strtonum.c │ │ └── strtoumax.c │ ├── string │ │ ├── Makefile.inc │ │ ├── explicit_bzero.c │ │ ├── strlcat.c │ │ ├── strlcpy.3 │ │ ├── strlcpy.c │ │ ├── strmode.3 │ │ ├── strmode.c │ │ ├── timingsafe_bcmp.3 │ │ ├── timingsafe_bcmp.c │ │ └── timingsafe_memcmp.c │ └── sys │ │ ├── Makefile.inc │ │ └── getdtablecount.2 └── liboutil │ ├── Makefile │ ├── bcrypt_pbkdf.3 │ ├── bcrypt_pbkdf.c │ ├── check_expire.3 │ ├── check_expire.c │ ├── fmt_scaled.3 │ ├── fmt_scaled.c │ ├── fparseln.3 │ ├── fparseln.c │ ├── imsg-buffer.c │ ├── imsg.c │ ├── imsg.h │ ├── imsg_init.3 │ ├── isduid.3 │ ├── logwtmp.c │ ├── ohash.c │ ├── ohash.h │ ├── ohash_init.3 │ ├── ohash_interval.3 │ ├── pidfile.3 │ ├── pidfile.c │ ├── pkcs5_pbkdf2.3 │ ├── pkcs5_pbkdf2.c │ ├── readlabel.c │ ├── readlabelfs.3 │ ├── shlib_version │ ├── util.h │ ├── uucplock.3 │ └── uucplock.c ├── libexec ├── Makefile ├── Makefile.inc └── tradcpp │ ├── Makefile │ ├── array.c │ ├── array.h │ ├── config.h │ ├── directive.c │ ├── directive.h │ ├── eval.c │ ├── eval.h │ ├── files.c │ ├── files.h │ ├── inlinedefs.h │ ├── macro.c │ ├── macro.h │ ├── main.c │ ├── mode.h │ ├── output.c │ ├── output.h │ ├── place.c │ ├── place.h │ ├── tradcpp.1 │ ├── utils.c │ ├── utils.h │ └── version.h ├── mk ├── bsd.lib.mk ├── bsd.man.mk ├── bsd.own.mk ├── bsd.prog.mk ├── bsd.regress.mk └── bsd.subdir.mk ├── regress ├── Makefile ├── bin │ ├── Makefile │ ├── cat │ │ ├── Makefile │ │ ├── cat_be.in │ │ ├── cat_be.out │ │ ├── cat_se.in │ │ └── cat_se.out │ ├── chmod │ │ ├── Makefile │ │ ├── chflags.error │ │ ├── chgrp.error │ │ ├── chmod.error │ │ ├── chmod_prepsymlink │ │ └── chown.error │ ├── ln │ │ ├── Makefile │ │ └── test_ln.sh │ ├── md5 │ │ ├── Makefile │ │ ├── pipe_test.md5 │ │ ├── testsuite.cksum │ │ ├── testsuite.md5 │ │ ├── testsuite.sha1 │ │ ├── testsuite.sha224 │ │ ├── testsuite.sha256 │ │ ├── testsuite.sha384 │ │ └── testsuite.sha512 │ ├── pax │ │ ├── Makefile │ │ ├── t1.out │ │ ├── t1.sh │ │ ├── t2.out │ │ ├── t2.sh │ │ ├── t3.out │ │ ├── t3.sh │ │ ├── t4.out │ │ ├── t4.sh │ │ ├── t5.sh │ │ └── t6.sh │ └── test │ │ ├── Makefile │ │ └── TEST.sh ├── sbin │ └── Makefile ├── usr.bin │ ├── Makefile │ ├── basename │ │ ├── Makefile │ │ └── basename.sh │ ├── bc │ │ ├── Makefile │ │ ├── t1.in │ │ ├── t1.log │ │ ├── t1.out │ │ ├── t10.in │ │ ├── t10.log │ │ ├── t10.out │ │ ├── t11.in │ │ ├── t11.log │ │ ├── t11.out │ │ ├── t12.in │ │ ├── t12.log │ │ ├── t12.out │ │ ├── t13.in │ │ ├── t13.log │ │ ├── t13.out │ │ ├── t14.in │ │ ├── t14.log │ │ ├── t14.out │ │ ├── t15.in │ │ ├── t15.log │ │ ├── t15.out │ │ ├── t16.in │ │ ├── t16.log │ │ ├── t16.out │ │ ├── t17.in │ │ ├── t17.log │ │ ├── t17.out │ │ ├── t18.in │ │ ├── t18.log │ │ ├── t18.out │ │ ├── t19 │ │ ├── t19.c │ │ ├── t2.in │ │ ├── t2.log │ │ ├── t2.out │ │ ├── t3.in │ │ ├── t3.log │ │ ├── t3.out │ │ ├── t4.in │ │ ├── t4.log │ │ ├── t4.out │ │ ├── t5.in │ │ ├── t5.log │ │ ├── t5.out │ │ ├── t6.in │ │ ├── t6.log │ │ ├── t6.out │ │ ├── t7.in │ │ ├── t7.log │ │ ├── t7.out │ │ ├── t8.in │ │ ├── t8.log │ │ ├── t8.out │ │ ├── t9.in │ │ ├── t9.log │ │ └── t9.out │ ├── calendar │ │ ├── 20160101.out │ │ ├── 20160102.out │ │ ├── 20160103.out │ │ ├── 20160104.out │ │ ├── 20160105.out │ │ ├── 20160106.out │ │ ├── 20160107.out │ │ ├── 20160108.out │ │ ├── 20160109.out │ │ ├── 20160110.out │ │ ├── 20160111.out │ │ ├── 20160112.out │ │ ├── 20160113.out │ │ ├── 20160114.out │ │ ├── 20160115.out │ │ ├── 20160116.out │ │ ├── 20160117.out │ │ ├── 20160118.out │ │ ├── 20160119.out │ │ ├── 20160120.out │ │ ├── 20160121.out │ │ ├── 20160122.out │ │ ├── 20160123.out │ │ ├── 20160124.out │ │ ├── 20160125.out │ │ ├── 20160126.out │ │ ├── 20160127.out │ │ ├── 20160128.out │ │ ├── 20160129.out │ │ ├── 20160130.out │ │ ├── 20160131.out │ │ ├── 20160201.out │ │ ├── 20160202.out │ │ ├── 20160203.out │ │ ├── 20160204.out │ │ ├── 20160205.out │ │ ├── 20160206.out │ │ ├── 20160207.out │ │ ├── 20160208.out │ │ ├── 20160209.out │ │ ├── 20160210.out │ │ ├── 20160211.out │ │ ├── 20160212.out │ │ ├── 20160213.out │ │ ├── 20160214.out │ │ ├── 20160215.out │ │ ├── 20160216.out │ │ ├── 20160217.out │ │ ├── 20160218.out │ │ ├── 20160219.out │ │ ├── 20160220.out │ │ ├── 20160221.out │ │ ├── 20160222.out │ │ ├── 20160223.out │ │ ├── 20160224.out │ │ ├── 20160225.out │ │ ├── 20160226.out │ │ ├── 20160227.out │ │ ├── 20160228.out │ │ ├── 20160229.out │ │ ├── 20160301.out │ │ ├── 20160302.out │ │ ├── 20160303.out │ │ ├── 20160304.out │ │ ├── 20160305.out │ │ ├── 20160306.out │ │ ├── 20160307.out │ │ ├── 20160308.out │ │ ├── 20160309.out │ │ ├── 20160310.out │ │ ├── 20160311.out │ │ ├── 20160312.out │ │ ├── 20160313.out │ │ ├── 20160314.out │ │ ├── 20160315.out │ │ ├── 20160316.out │ │ ├── 20160317.out │ │ ├── 20160318.out │ │ ├── 20160319.out │ │ ├── 20160320.out │ │ ├── 20160321.out │ │ ├── 20160322.out │ │ ├── 20160323.out │ │ ├── 20160324.out │ │ ├── 20160325.out │ │ ├── 20160326.out │ │ ├── 20160327.out │ │ ├── 20160328.out │ │ ├── 20160329.out │ │ ├── 20160330.out │ │ ├── 20160331.out │ │ ├── 20160401.out │ │ ├── 20160402.out │ │ ├── 20160403.out │ │ ├── 20160404.out │ │ ├── 20160405.out │ │ ├── 20160406.out │ │ ├── 20160407.out │ │ ├── 20160408.out │ │ ├── 20160409.out │ │ ├── 20160410.out │ │ ├── 20160411.out │ │ ├── 20160412.out │ │ ├── 20160413.out │ │ ├── 20160414.out │ │ ├── 20160415.out │ │ ├── 20160416.out │ │ ├── 20160417.out │ │ ├── 20160418.out │ │ ├── 20160419.out │ │ ├── 20160420.out │ │ ├── 20160421.out │ │ ├── 20160422.out │ │ ├── 20160423.out │ │ ├── 20160424.out │ │ ├── 20160425.out │ │ ├── 20160426.out │ │ ├── 20160427.out │ │ ├── 20160428.out │ │ ├── 20160429.out │ │ ├── 20160430.out │ │ ├── 20160501.out │ │ ├── 20160502.out │ │ ├── 20160503.out │ │ ├── 20160504.out │ │ ├── 20160505.out │ │ ├── 20160506.out │ │ ├── 20160507.out │ │ ├── 20160508.out │ │ ├── 20160509.out │ │ ├── 20160510.out │ │ ├── 20160511.out │ │ ├── 20160512.out │ │ ├── 20160513.out │ │ ├── 20160514.out │ │ ├── 20160515.out │ │ ├── 20160516.out │ │ ├── 20160517.out │ │ ├── 20160518.out │ │ ├── 20160519.out │ │ ├── 20160520.out │ │ ├── 20160521.out │ │ ├── 20160522.out │ │ ├── 20160523.out │ │ ├── 20160524.out │ │ ├── 20160525.out │ │ ├── 20160526.out │ │ ├── 20160527.out │ │ ├── 20160528.out │ │ ├── 20160529.out │ │ ├── 20160530.out │ │ ├── 20160531.out │ │ ├── 20160601.out │ │ ├── 20160602.out │ │ ├── 20160603.out │ │ ├── 20160604.out │ │ ├── 20160605.out │ │ ├── 20160606.out │ │ ├── 20160607.out │ │ ├── 20160608.out │ │ ├── 20160609.out │ │ ├── 20160610.out │ │ ├── 20160611.out │ │ ├── 20160612.out │ │ ├── 20160613.out │ │ ├── 20160614.out │ │ ├── 20160615.out │ │ ├── 20160616.out │ │ ├── 20160617.out │ │ ├── 20160618.out │ │ ├── 20160619.out │ │ ├── 20160620.out │ │ ├── 20160621.out │ │ ├── 20160622.out │ │ ├── 20160623.out │ │ ├── 20160624.out │ │ ├── 20160625.out │ │ ├── 20160626.out │ │ ├── 20160627.out │ │ ├── 20160628.out │ │ ├── 20160629.out │ │ ├── 20160630.out │ │ ├── 20160701.out │ │ ├── 20160702.out │ │ ├── 20160703.out │ │ ├── 20160704.out │ │ ├── 20160705.out │ │ ├── 20160706.out │ │ ├── 20160707.out │ │ ├── 20160708.out │ │ ├── 20160709.out │ │ ├── 20160710.out │ │ ├── 20160711.out │ │ ├── 20160712.out │ │ ├── 20160713.out │ │ ├── 20160714.out │ │ ├── 20160715.out │ │ ├── 20160716.out │ │ ├── 20160717.out │ │ ├── 20160718.out │ │ ├── 20160719.out │ │ ├── 20160720.out │ │ ├── 20160721.out │ │ ├── 20160722.out │ │ ├── 20160723.out │ │ ├── 20160724.out │ │ ├── 20160725.out │ │ ├── 20160726.out │ │ ├── 20160727.out │ │ ├── 20160728.out │ │ ├── 20160729.out │ │ ├── 20160730.out │ │ ├── 20160731.out │ │ ├── 20160801.out │ │ ├── 20160802.out │ │ ├── 20160803.out │ │ ├── 20160804.out │ │ ├── 20160805.out │ │ ├── 20160806.out │ │ ├── 20160807.out │ │ ├── 20160808.out │ │ ├── 20160809.out │ │ ├── 20160810.out │ │ ├── 20160811.out │ │ ├── 20160812.out │ │ ├── 20160813.out │ │ ├── 20160814.out │ │ ├── 20160815.out │ │ ├── 20160816.out │ │ ├── 20160817.out │ │ ├── 20160818.out │ │ ├── 20160819.out │ │ ├── 20160820.out │ │ ├── 20160821.out │ │ ├── 20160822.out │ │ ├── 20160823.out │ │ ├── 20160824.out │ │ ├── 20160825.out │ │ ├── 20160826.out │ │ ├── 20160827.out │ │ ├── 20160828.out │ │ ├── 20160829.out │ │ ├── 20160830.out │ │ ├── 20160831.out │ │ ├── 20160901.out │ │ ├── 20160902.out │ │ ├── 20160903.out │ │ ├── 20160904.out │ │ ├── 20160905.out │ │ ├── 20160906.out │ │ ├── 20160907.out │ │ ├── 20160908.out │ │ ├── 20160909.out │ │ ├── 20160910.out │ │ ├── 20160911.out │ │ ├── 20160912.out │ │ ├── 20160913.out │ │ ├── 20160914.out │ │ ├── 20160915.out │ │ ├── 20160916.out │ │ ├── 20160917.out │ │ ├── 20160918.out │ │ ├── 20160919.out │ │ ├── 20160920.out │ │ ├── 20160921.out │ │ ├── 20160922.out │ │ ├── 20160923.out │ │ ├── 20160924.out │ │ ├── 20160925.out │ │ ├── 20160926.out │ │ ├── 20160927.out │ │ ├── 20160928.out │ │ ├── 20160929.out │ │ ├── 20160930.out │ │ ├── 20161001.out │ │ ├── 20161002.out │ │ ├── 20161003.out │ │ ├── 20161004.out │ │ ├── 20161005.out │ │ ├── 20161006.out │ │ ├── 20161007.out │ │ ├── 20161008.out │ │ ├── 20161009.out │ │ ├── 20161010.out │ │ ├── 20161011.out │ │ ├── 20161012.out │ │ ├── 20161013.out │ │ ├── 20161014.out │ │ ├── 20161015.out │ │ ├── 20161016.out │ │ ├── 20161017.out │ │ ├── 20161018.out │ │ ├── 20161019.out │ │ ├── 20161020.out │ │ ├── 20161021.out │ │ ├── 20161022.out │ │ ├── 20161023.out │ │ ├── 20161024.out │ │ ├── 20161025.out │ │ ├── 20161026.out │ │ ├── 20161027.out │ │ ├── 20161028.out │ │ ├── 20161029.out │ │ ├── 20161030.out │ │ ├── 20161031.out │ │ ├── 20161101.out │ │ ├── 20161102.out │ │ ├── 20161103.out │ │ ├── 20161104.out │ │ ├── 20161105.out │ │ ├── 20161106.out │ │ ├── 20161107.out │ │ ├── 20161108.out │ │ ├── 20161109.out │ │ ├── 20161110.out │ │ ├── 20161111.out │ │ ├── 20161112.out │ │ ├── 20161113.out │ │ ├── 20161114.out │ │ ├── 20161115.out │ │ ├── 20161116.out │ │ ├── 20161117.out │ │ ├── 20161118.out │ │ ├── 20161119.out │ │ ├── 20161120.out │ │ ├── 20161121.out │ │ ├── 20161122.out │ │ ├── 20161123.out │ │ ├── 20161124.out │ │ ├── 20161125.out │ │ ├── 20161126.out │ │ ├── 20161127.out │ │ ├── 20161128.out │ │ ├── 20161129.out │ │ ├── 20161130.out │ │ ├── 20161201.out │ │ ├── 20161202.out │ │ ├── 20161203.out │ │ ├── 20161204.out │ │ ├── 20161205.out │ │ ├── 20161206.out │ │ ├── 20161207.out │ │ ├── 20161208.out │ │ ├── 20161209.out │ │ ├── 20161210.out │ │ ├── 20161211.out │ │ ├── 20161212.out │ │ ├── 20161213.out │ │ ├── 20161214.out │ │ ├── 20161215.out │ │ ├── 20161216.out │ │ ├── 20161217.out │ │ ├── 20161218.out │ │ ├── 20161219.out │ │ ├── 20161220.out │ │ ├── 20161221.out │ │ ├── 20161222.out │ │ ├── 20161223.out │ │ ├── 20161224.out │ │ ├── 20161225.out │ │ ├── 20161226.out │ │ ├── 20161227.out │ │ ├── 20161228.out │ │ ├── 20161229.out │ │ ├── 20161230.out │ │ ├── 20161231.out │ │ ├── 20170101.out │ │ ├── 20170102.out │ │ ├── 20170103.out │ │ ├── 20170104.out │ │ ├── 20170105.out │ │ ├── 20170106.out │ │ ├── 20170107.out │ │ ├── 20170108.out │ │ ├── 20170109.out │ │ ├── 20170110.out │ │ ├── 20170111.out │ │ ├── 20170112.out │ │ ├── 20170113.out │ │ ├── 20170114.out │ │ ├── 20170115.out │ │ ├── 20170116.out │ │ ├── 20170117.out │ │ ├── 20170118.out │ │ ├── 20170119.out │ │ ├── 20170120.out │ │ ├── 20170121.out │ │ ├── 20170122.out │ │ ├── 20170123.out │ │ ├── 20170124.out │ │ ├── 20170125.out │ │ ├── 20170126.out │ │ ├── 20170127.out │ │ ├── 20170128.out │ │ ├── 20170129.out │ │ ├── 20170130.out │ │ ├── 20170131.out │ │ ├── 20170201.out │ │ ├── 20170202.out │ │ ├── 20170203.out │ │ ├── 20170204.out │ │ ├── 20170205.out │ │ ├── 20170206.out │ │ ├── 20170207.out │ │ ├── 20170208.out │ │ ├── 20170209.out │ │ ├── 20170210.out │ │ ├── 20170211.out │ │ ├── 20170212.out │ │ ├── 20170213.out │ │ ├── 20170214.out │ │ ├── 20170215.out │ │ ├── 20170216.out │ │ ├── 20170217.out │ │ ├── 20170218.out │ │ ├── 20170219.out │ │ ├── 20170220.out │ │ ├── 20170221.out │ │ ├── 20170222.out │ │ ├── 20170223.out │ │ ├── 20170224.out │ │ ├── 20170225.out │ │ ├── 20170226.out │ │ ├── 20170227.out │ │ ├── 20170228.out │ │ ├── 20170301.out │ │ ├── 20170302.out │ │ ├── 20170303.out │ │ ├── 20170304.out │ │ ├── 20170305.out │ │ ├── 20170306.out │ │ ├── 20170307.out │ │ ├── 20170308.out │ │ ├── 20170309.out │ │ ├── 20170310.out │ │ ├── 20170311.out │ │ ├── 20170312.out │ │ ├── 20170313.out │ │ ├── 20170314.out │ │ ├── 20170315.out │ │ ├── 20170316.out │ │ ├── 20170317.out │ │ ├── 20170318.out │ │ ├── 20170319.out │ │ ├── 20170320.out │ │ ├── 20170321.out │ │ ├── 20170322.out │ │ ├── 20170323.out │ │ ├── 20170324.out │ │ ├── 20170325.out │ │ ├── 20170326.out │ │ ├── 20170327.out │ │ ├── 20170328.out │ │ ├── 20170329.out │ │ ├── 20170330.out │ │ ├── 20170331.out │ │ ├── 20170401.out │ │ ├── 20170402.out │ │ ├── 20170403.out │ │ ├── 20170404.out │ │ ├── 20170405.out │ │ ├── 20170406.out │ │ ├── 20170407.out │ │ ├── 20170408.out │ │ ├── 20170409.out │ │ ├── 20170410.out │ │ ├── 20170411.out │ │ ├── 20170412.out │ │ ├── 20170413.out │ │ ├── 20170414.out │ │ ├── 20170415.out │ │ ├── 20170416.out │ │ ├── 20170417.out │ │ ├── 20170418.out │ │ ├── 20170419.out │ │ ├── 20170420.out │ │ ├── 20170421.out │ │ ├── 20170422.out │ │ ├── 20170423.out │ │ ├── 20170424.out │ │ ├── 20170425.out │ │ ├── 20170426.out │ │ ├── 20170427.out │ │ ├── 20170428.out │ │ ├── 20170429.out │ │ ├── 20170430.out │ │ ├── 20170501.out │ │ ├── 20170502.out │ │ ├── 20170503.out │ │ ├── 20170504.out │ │ ├── 20170505.out │ │ ├── 20170506.out │ │ ├── 20170507.out │ │ ├── 20170508.out │ │ ├── 20170509.out │ │ ├── 20170510.out │ │ ├── 20170511.out │ │ ├── 20170512.out │ │ ├── 20170513.out │ │ ├── 20170514.out │ │ ├── 20170515.out │ │ ├── 20170516.out │ │ ├── 20170517.out │ │ ├── 20170518.out │ │ ├── 20170519.out │ │ ├── 20170520.out │ │ ├── 20170521.out │ │ ├── 20170522.out │ │ ├── 20170523.out │ │ ├── 20170524.out │ │ ├── 20170525.out │ │ ├── 20170526.out │ │ ├── 20170527.out │ │ ├── 20170528.out │ │ ├── 20170529.out │ │ ├── 20170530.out │ │ ├── 20170531.out │ │ ├── 20170601.out │ │ ├── 20170602.out │ │ ├── 20170603.out │ │ ├── 20170604.out │ │ ├── 20170605.out │ │ ├── 20170606.out │ │ ├── 20170607.out │ │ ├── 20170608.out │ │ ├── 20170609.out │ │ ├── 20170610.out │ │ ├── 20170611.out │ │ ├── 20170612.out │ │ ├── 20170613.out │ │ ├── 20170614.out │ │ ├── 20170615.out │ │ ├── 20170616.out │ │ ├── 20170617.out │ │ ├── 20170618.out │ │ ├── 20170619.out │ │ ├── 20170620.out │ │ ├── 20170621.out │ │ ├── 20170622.out │ │ ├── 20170623.out │ │ ├── 20170624.out │ │ ├── 20170625.out │ │ ├── 20170626.out │ │ ├── 20170627.out │ │ ├── 20170628.out │ │ ├── 20170629.out │ │ ├── 20170630.out │ │ ├── 20170701.out │ │ ├── 20170702.out │ │ ├── 20170703.out │ │ ├── 20170704.out │ │ ├── 20170705.out │ │ ├── 20170706.out │ │ ├── 20170707.out │ │ ├── 20170708.out │ │ ├── 20170709.out │ │ ├── 20170710.out │ │ ├── 20170711.out │ │ ├── 20170712.out │ │ ├── 20170713.out │ │ ├── 20170714.out │ │ ├── 20170715.out │ │ ├── 20170716.out │ │ ├── 20170717.out │ │ ├── 20170718.out │ │ ├── 20170719.out │ │ ├── 20170720.out │ │ ├── 20170721.out │ │ ├── 20170722.out │ │ ├── 20170723.out │ │ ├── 20170724.out │ │ ├── 20170725.out │ │ ├── 20170726.out │ │ ├── 20170727.out │ │ ├── 20170728.out │ │ ├── 20170729.out │ │ ├── 20170730.out │ │ ├── 20170731.out │ │ ├── 20170801.out │ │ ├── 20170802.out │ │ ├── 20170803.out │ │ ├── 20170804.out │ │ ├── 20170805.out │ │ ├── 20170806.out │ │ ├── 20170807.out │ │ ├── 20170808.out │ │ ├── 20170809.out │ │ ├── 20170810.out │ │ ├── 20170811.out │ │ ├── 20170812.out │ │ ├── 20170813.out │ │ ├── 20170814.out │ │ ├── 20170815.out │ │ ├── 20170816.out │ │ ├── 20170817.out │ │ ├── 20170818.out │ │ ├── 20170819.out │ │ ├── 20170820.out │ │ ├── 20170821.out │ │ ├── 20170822.out │ │ ├── 20170823.out │ │ ├── 20170824.out │ │ ├── 20170825.out │ │ ├── 20170826.out │ │ ├── 20170827.out │ │ ├── 20170828.out │ │ ├── 20170829.out │ │ ├── 20170830.out │ │ ├── 20170831.out │ │ ├── 20170901.out │ │ ├── 20170902.out │ │ ├── 20170903.out │ │ ├── 20170904.out │ │ ├── 20170905.out │ │ ├── 20170906.out │ │ ├── 20170907.out │ │ ├── 20170908.out │ │ ├── 20170909.out │ │ ├── 20170910.out │ │ ├── 20170911.out │ │ ├── 20170912.out │ │ ├── 20170913.out │ │ ├── 20170914.out │ │ ├── 20170915.out │ │ ├── 20170916.out │ │ ├── 20170917.out │ │ ├── 20170918.out │ │ ├── 20170919.out │ │ ├── 20170920.out │ │ ├── 20170921.out │ │ ├── 20170922.out │ │ ├── 20170923.out │ │ ├── 20170924.out │ │ ├── 20170925.out │ │ ├── 20170926.out │ │ ├── 20170927.out │ │ ├── 20170928.out │ │ ├── 20170929.out │ │ ├── 20170930.out │ │ ├── 20171001.out │ │ ├── 20171002.out │ │ ├── 20171003.out │ │ ├── 20171004.out │ │ ├── 20171005.out │ │ ├── 20171006.out │ │ ├── 20171007.out │ │ ├── 20171008.out │ │ ├── 20171009.out │ │ ├── 20171010.out │ │ ├── 20171011.out │ │ ├── 20171012.out │ │ ├── 20171013.out │ │ ├── 20171014.out │ │ ├── 20171015.out │ │ ├── 20171016.out │ │ ├── 20171017.out │ │ ├── 20171018.out │ │ ├── 20171019.out │ │ ├── 20171020.out │ │ ├── 20171021.out │ │ ├── 20171022.out │ │ ├── 20171023.out │ │ ├── 20171024.out │ │ ├── 20171025.out │ │ ├── 20171026.out │ │ ├── 20171027.out │ │ ├── 20171028.out │ │ ├── 20171029.out │ │ ├── 20171030.out │ │ ├── 20171031.out │ │ ├── 20171101.out │ │ ├── 20171102.out │ │ ├── 20171103.out │ │ ├── 20171104.out │ │ ├── 20171105.out │ │ ├── 20171106.out │ │ ├── 20171107.out │ │ ├── 20171108.out │ │ ├── 20171109.out │ │ ├── 20171110.out │ │ ├── 20171111.out │ │ ├── 20171112.out │ │ ├── 20171113.out │ │ ├── 20171114.out │ │ ├── 20171115.out │ │ ├── 20171116.out │ │ ├── 20171117.out │ │ ├── 20171118.out │ │ ├── 20171119.out │ │ ├── 20171120.out │ │ ├── 20171121.out │ │ ├── 20171122.out │ │ ├── 20171123.out │ │ ├── 20171124.out │ │ ├── 20171125.out │ │ ├── 20171126.out │ │ ├── 20171127.out │ │ ├── 20171128.out │ │ ├── 20171129.out │ │ ├── 20171130.out │ │ ├── 20171201.out │ │ ├── 20171202.out │ │ ├── 20171203.out │ │ ├── 20171204.out │ │ ├── 20171205.out │ │ ├── 20171206.out │ │ ├── 20171207.out │ │ ├── 20171208.out │ │ ├── 20171209.out │ │ ├── 20171210.out │ │ ├── 20171211.out │ │ ├── 20171212.out │ │ ├── 20171213.out │ │ ├── 20171214.out │ │ ├── 20171215.out │ │ ├── 20171216.out │ │ ├── 20171217.out │ │ ├── 20171218.out │ │ ├── 20171219.out │ │ ├── 20171220.out │ │ ├── 20171221.out │ │ ├── 20171222.out │ │ ├── 20171223.out │ │ ├── 20171224.out │ │ ├── 20171225.out │ │ ├── 20171226.out │ │ ├── 20171227.out │ │ ├── 20171228.out │ │ ├── 20171229.out │ │ ├── 20171230.out │ │ ├── 20171231.out │ │ ├── Makefile │ │ └── in │ ├── colrm │ │ ├── Makefile │ │ └── colrm.sh │ ├── column │ │ ├── Makefile │ │ └── column.sh │ ├── cut │ │ ├── Makefile │ │ └── cut.sh │ ├── dc │ │ ├── Makefile │ │ ├── t1.in │ │ ├── t1.out │ │ ├── t10.in │ │ ├── t10.out │ │ ├── t11.in │ │ ├── t11.out │ │ ├── t12.in │ │ ├── t12.out │ │ ├── t13.in │ │ ├── t13.out │ │ ├── t14.in │ │ ├── t14.out │ │ ├── t15.in │ │ ├── t15.out │ │ ├── t16.in │ │ ├── t16.out │ │ ├── t17.in │ │ ├── t17.out │ │ ├── t18.in │ │ ├── t18.out │ │ ├── t19.in │ │ ├── t19.out │ │ ├── t2.in │ │ ├── t2.out │ │ ├── t20.in │ │ ├── t20.out │ │ ├── t21.in │ │ ├── t21.out │ │ ├── t22.out │ │ ├── t23.in │ │ ├── t23.out │ │ ├── t24.in │ │ ├── t24.out │ │ ├── t25.in │ │ ├── t25.out │ │ ├── t26.in │ │ ├── t26.out │ │ ├── t27.in │ │ ├── t27.out │ │ ├── t3.in │ │ ├── t3.out │ │ ├── t4.in │ │ ├── t4.out │ │ ├── t5.in │ │ ├── t5.out │ │ ├── t6.in │ │ ├── t6.out │ │ ├── t7.in │ │ ├── t7.out │ │ ├── t8.in │ │ ├── t8.out │ │ ├── t9.in │ │ └── t9.out │ ├── diff │ │ ├── Makefile │ │ ├── t1.1 │ │ ├── t1.2 │ │ ├── t10.1 │ │ ├── t10.2 │ │ ├── t11.1 │ │ ├── t11.2 │ │ ├── t12.1 │ │ ├── t12.2 │ │ ├── t13.1 │ │ ├── t13.2 │ │ ├── t14.1 │ │ ├── t14.2 │ │ ├── t15.1 │ │ ├── t15.2 │ │ ├── t2.1 │ │ ├── t2.2 │ │ ├── t3.1 │ │ ├── t3.2 │ │ ├── t4.1 │ │ ├── t4.2 │ │ ├── t5.1 │ │ ├── t5.2 │ │ ├── t6.1 │ │ ├── t6.2 │ │ ├── t7.1 │ │ ├── t7.2 │ │ ├── t8.1 │ │ ├── t8.2 │ │ ├── t9.1 │ │ ├── t9.2 │ │ └── torture │ │ │ └── torture │ ├── diff3 │ │ └── Makefile │ ├── dirname │ │ ├── Makefile │ │ └── dirname.sh │ ├── file │ │ ├── Makefile │ │ ├── t0.in │ │ ├── t0.out │ │ ├── t1.in │ │ ├── t1.out │ │ ├── t10.in │ │ ├── t10.out │ │ ├── t11.in │ │ ├── t11.out │ │ ├── t15.in │ │ ├── t15.out │ │ ├── t17.in │ │ ├── t17.out │ │ ├── t18.in │ │ ├── t18.out │ │ ├── t19.in │ │ ├── t19.out │ │ ├── t2.in │ │ ├── t2.out │ │ ├── t20.in │ │ ├── t20.out │ │ ├── t21.in │ │ ├── t21.out │ │ ├── t22.in │ │ ├── t22.out │ │ ├── t3.in │ │ ├── t3.out │ │ ├── t30.in │ │ ├── t30.out │ │ ├── t31.in │ │ ├── t31.out │ │ ├── t32.in │ │ ├── t32.out │ │ ├── t33.in │ │ ├── t33.out │ │ ├── t4.in │ │ ├── t4.out │ │ ├── t5.in │ │ ├── t5.out │ │ ├── t6.in │ │ ├── t6.out │ │ ├── t7.in │ │ ├── t7.out │ │ ├── t8.in │ │ ├── t8.out │ │ ├── t9.in │ │ └── t9.out │ ├── fmt │ │ ├── Makefile │ │ └── fmt.sh │ ├── fold │ │ ├── Makefile │ │ └── fold.sh │ ├── grep │ │ ├── Makefile │ │ ├── in │ │ ├── t1.out │ │ ├── t11.out │ │ ├── t13.in │ │ ├── t13.out │ │ ├── t14.in │ │ ├── t15.in │ │ ├── t15.out │ │ ├── t17.in │ │ ├── t17.out │ │ ├── t19.in │ │ ├── t19.out │ │ ├── t21.out │ │ ├── t22.in │ │ ├── t23.in │ │ ├── t23.out │ │ ├── t25.in │ │ ├── t25.out │ │ ├── t26.out │ │ ├── t3.out │ │ ├── t4.out │ │ ├── t5.out │ │ ├── t6.out │ │ └── t7.out │ ├── jot │ │ ├── Makefile │ │ ├── regress.ascii.out │ │ ├── regress.block.out │ │ ├── regress.dbbd.out │ │ ├── regress.dbbh.out │ │ ├── regress.dddd.out │ │ ├── regress.dddh.out │ │ ├── regress.ddhd.out │ │ ├── regress.ddhd2.out │ │ ├── regress.ddhd3.out │ │ ├── regress.ddhh.out │ │ ├── regress.ddhh2.out │ │ ├── regress.ddhh3.out │ │ ├── regress.dhdd.out │ │ ├── regress.dhdd3.out │ │ ├── regress.dhdh.out │ │ ├── regress.dhdh3.out │ │ ├── regress.dhhd.out │ │ ├── regress.dhhd2.out │ │ ├── regress.dhhd3.out │ │ ├── regress.dhhd4.out │ │ ├── regress.dhhh.out │ │ ├── regress.dhhh2.out │ │ ├── regress.dhhh3.out │ │ ├── regress.dhhh4.out │ │ ├── regress.ed.out │ │ ├── regress.grep.out │ │ ├── regress.hbbd.out │ │ ├── regress.hbbh.out │ │ ├── regress.hddd.out │ │ ├── regress.hddd2.out │ │ ├── regress.hddh.out │ │ ├── regress.hddh2.out │ │ ├── regress.hdhd.out │ │ ├── regress.hdhd2.out │ │ ├── regress.hdhd3.out │ │ ├── regress.hdhd4.out │ │ ├── regress.hdhh.out │ │ ├── regress.hdhh2.out │ │ ├── regress.hdhh3.out │ │ ├── regress.hdhh4.out │ │ ├── regress.hhdd.out │ │ ├── regress.hhdd2.out │ │ ├── regress.hhdd3.out │ │ ├── regress.hhdd4.out │ │ ├── regress.hhdh.out │ │ ├── regress.hhdh2.out │ │ ├── regress.hhdh3.out │ │ ├── regress.hhdh4.out │ │ ├── regress.hhhd.out │ │ ├── regress.hhhd2.out │ │ ├── regress.hhhd3.out │ │ ├── regress.hhhd4.out │ │ ├── regress.hhhh.out │ │ ├── regress.hhhh2.out │ │ ├── regress.hhhh3.out │ │ ├── regress.hhhh4.out │ │ ├── regress.m4 │ │ ├── regress.man1.out │ │ ├── regress.man10.out │ │ ├── regress.man2.out │ │ ├── regress.man3.out │ │ ├── regress.man4.out │ │ ├── regress.man5.out │ │ ├── regress.man6.out │ │ ├── regress.man7.out │ │ ├── regress.man8.out │ │ ├── regress.man9.out │ │ ├── regress.n21.out │ │ ├── regress.rand1.out │ │ ├── regress.rand2.out │ │ ├── regress.rdhhh.out │ │ ├── regress.rhdhh.out │ │ ├── regress.sh │ │ ├── regress.stutter.out │ │ ├── regress.stutter2.out │ │ ├── regress.tabs.out │ │ ├── regress.wX1.out │ │ ├── regress.wXl.out │ │ ├── regress.wc.out │ │ ├── regress.wdl.out │ │ ├── regress.wdn.out │ │ ├── regress.we.out │ │ ├── regress.wf.out │ │ ├── regress.wg.out │ │ ├── regress.wgd.out │ │ ├── regress.wo.out │ │ ├── regress.wp1.out │ │ ├── regress.wp2.out │ │ ├── regress.wp3.out │ │ ├── regress.wp4.out │ │ ├── regress.wp5.out │ │ ├── regress.wp6.out │ │ ├── regress.wu.out │ │ ├── regress.wwe.out │ │ ├── regress.wx.out │ │ ├── regress.wxn.out │ │ ├── regress.x.out │ │ ├── regress.xaa.out │ │ └── regress.yes.out │ ├── tail │ │ ├── Makefile │ │ ├── follow-newsyslog.sh │ │ ├── follow-overwrite-by-file.out │ │ ├── follow-overwrite-by-file.sh │ │ ├── follow-overwrite-data.out │ │ ├── follow-overwrite-data.sh │ │ ├── follow-removed-recreated.out │ │ ├── follow-removed-recreated.sh │ │ ├── follow-renames.out │ │ ├── follow-renames.sh │ │ ├── forward-blocks-rprint.out │ │ ├── forward-blocks-rprint.sh │ │ ├── forward-blocks.out │ │ ├── forward-blocks.sh │ │ ├── forward-chars-rprint.out │ │ ├── forward-chars-rprint.sh │ │ ├── forward-chars.out │ │ ├── forward-chars.sh │ │ ├── forward-lines-rprint.out │ │ ├── forward-lines-rprint.sh │ │ ├── forward-lines.out │ │ ├── forward-lines.sh │ │ ├── reverse-blocks-rprint.out │ │ ├── reverse-blocks-rprint.sh │ │ ├── reverse-blocks.out │ │ ├── reverse-blocks.sh │ │ ├── reverse-chars-rprint.out │ │ ├── reverse-chars-rprint.sh │ │ ├── reverse-chars.out │ │ ├── reverse-chars.sh │ │ ├── reverse-lines-rprint.out │ │ ├── reverse-lines-rprint.sh │ │ ├── reverse-lines.out │ │ └── reverse-lines.sh │ ├── tsort │ │ ├── Makefile │ │ ├── build-tree │ │ ├── hints1 │ │ ├── hints2 │ │ ├── normalize-cycles │ │ ├── pairs1 │ │ ├── pairs2 │ │ ├── pairs5 │ │ ├── pairs6 │ │ ├── pairs7 │ │ ├── t2.canonical │ │ ├── t7.canonical │ │ └── tsort-check │ ├── ul │ │ ├── Makefile │ │ └── ul.sh │ ├── wc │ │ ├── Makefile │ │ └── wc.sh │ └── xargs │ │ ├── Makefile │ │ ├── showargs.c │ │ └── xargs-L.sh └── usr.sbin │ └── Makefile ├── sbin ├── Makefile ├── Makefile.inc ├── mknod │ ├── Makefile │ ├── mkfifo.1 │ ├── mknod.8 │ └── mknod.c └── nologin │ ├── Makefile │ ├── nologin.8 │ └── nologin.c ├── share ├── Makefile ├── Makefile.inc └── dict │ ├── Makefile │ ├── README │ ├── propernames │ ├── web2 │ └── web2a ├── usr.bin ├── Makefile ├── Makefile.inc ├── apply │ ├── Makefile │ ├── apply.1 │ └── apply.c ├── awk │ ├── FIXES │ ├── Makefile │ ├── README │ ├── USD.doc │ │ ├── Makefile │ │ └── awk │ ├── awk.1 │ ├── awk.h │ ├── awkgram.y │ ├── b.c │ ├── lex.c │ ├── lib.c │ ├── main.c │ ├── maketab.c │ ├── parse.c │ ├── proto.h │ ├── run.c │ └── tran.c ├── banner │ ├── Makefile │ ├── banner.1 │ ├── banner.c │ ├── banner.h │ └── chset.c ├── basename │ ├── Makefile │ ├── basename.1 │ └── basename.c ├── bc │ ├── Makefile │ ├── USD.doc │ │ ├── Makefile │ │ └── bc │ ├── bc.1 │ ├── bc.library │ ├── bc.y │ ├── extern.h │ ├── pathnames.h │ ├── scan.l │ └── tty.c ├── biff │ ├── Makefile │ ├── biff.1 │ └── biff.c ├── cal │ ├── Makefile │ ├── README │ ├── cal.1 │ └── cal.c ├── calendar │ ├── Makefile │ ├── calendar.1 │ ├── calendar.c │ ├── calendar.h │ ├── calendars │ │ ├── calendar.all │ │ ├── calendar.birthday │ │ ├── calendar.canada │ │ ├── calendar.christian │ │ ├── calendar.computer │ │ ├── calendar.croatian │ │ ├── calendar.discord │ │ ├── calendar.fictional │ │ ├── calendar.french │ │ ├── calendar.german │ │ ├── calendar.history │ │ ├── calendar.holiday │ │ ├── calendar.judaic │ │ ├── calendar.music │ │ ├── calendar.nz │ │ ├── calendar.openbsd │ │ ├── calendar.pagan │ │ ├── calendar.russian │ │ ├── calendar.space │ │ ├── calendar.uk │ │ ├── calendar.ushistory │ │ ├── calendar.usholiday │ │ ├── calendar.world │ │ ├── de_DE.UTF-8 │ │ │ ├── calendar.all │ │ │ ├── calendar.feiertag │ │ │ ├── calendar.geschichte │ │ │ ├── calendar.kirche │ │ │ ├── calendar.literatur │ │ │ ├── calendar.musik │ │ │ └── calendar.wissenschaft │ │ ├── fr_FR.UTF-8 │ │ │ ├── calendar.all │ │ │ ├── calendar.fetes │ │ │ ├── calendar.french │ │ │ ├── calendar.jferies │ │ │ └── calendar.proverbes │ │ ├── hr_HR.UTF-8 │ │ │ ├── calendar.all │ │ │ └── calendar.praznici │ │ └── ru_RU.UTF-8 │ │ │ ├── calendar.all │ │ │ ├── calendar.common │ │ │ ├── calendar.history │ │ │ ├── calendar.orthodox │ │ │ ├── calendar.pagan │ │ │ └── calendar.primety │ ├── day.c │ ├── io.c │ ├── ostern.c │ ├── paskha.c │ ├── pathnames.h │ └── pesach.c ├── cap_mkdb │ ├── Makefile │ ├── cap_mkdb.1 │ └── cap_mkdb.c ├── cmp │ ├── Makefile │ ├── cmp.1 │ ├── cmp.c │ ├── extern.h │ ├── misc.c │ ├── regular.c │ └── special.c ├── col │ ├── Makefile │ ├── README │ ├── col.1 │ └── col.c ├── colrm │ ├── Makefile │ ├── colrm.1 │ └── colrm.c ├── column │ ├── Makefile │ ├── column.1 │ └── column.c ├── comm │ ├── Makefile │ ├── comm.1 │ └── comm.c ├── compress │ ├── Makefile │ ├── compress.1 │ ├── compress.h │ ├── gzexe │ ├── gzexe.1 │ ├── gzip.1 │ ├── gzopen.c │ ├── main.c │ ├── nullopen.c │ ├── zdiff │ ├── zdiff.1 │ ├── zforce │ ├── zforce.1 │ ├── zmore │ ├── zmore.1 │ ├── znew │ ├── znew.1 │ └── zopen.c ├── csplit │ ├── Makefile │ ├── csplit.1 │ └── csplit.c ├── ctags │ ├── C.c │ ├── Makefile │ ├── ctags.1 │ ├── ctags.c │ ├── ctags.h │ ├── fortran.c │ ├── lisp.c │ ├── print.c │ ├── test │ │ └── ctags.test │ ├── tree.c │ └── yacc.c ├── cu │ ├── Makefile │ ├── command.c │ ├── cu.1 │ ├── cu.c │ ├── cu.h │ ├── error.c │ ├── input.c │ └── xmodem.c ├── cut │ ├── Makefile │ ├── cut.1 │ └── cut.c ├── dc │ ├── Makefile │ ├── USD.doc │ │ ├── Makefile │ │ └── dc │ ├── bcode.c │ ├── bcode.h │ ├── dc.1 │ ├── dc.c │ ├── extern.h │ ├── inout.c │ ├── main.c │ ├── mem.c │ └── stack.c ├── deroff │ ├── Makefile │ ├── deroff.1 │ └── deroff.c ├── diff │ ├── Makefile │ ├── diff.1 │ ├── diff.c │ ├── diff.h │ ├── diffdir.c │ ├── diffreg.c │ ├── xmalloc.c │ └── xmalloc.h ├── diff3 │ ├── Makefile │ ├── diff3.1 │ ├── diff3.ksh │ └── diff3prog.c ├── dirname │ ├── Makefile │ ├── dirname.1 │ └── dirname.c ├── du │ ├── Makefile │ ├── du.1 │ └── du.c ├── encrypt │ ├── Makefile │ ├── encrypt.1 │ └── encrypt.c ├── env │ ├── Makefile │ ├── env.1 │ └── env.c ├── expand │ ├── Makefile │ ├── expand.1 │ └── expand.c ├── false │ ├── Makefile │ ├── false.1 │ └── false.c ├── file │ ├── Makefile │ ├── file.1 │ ├── file.c │ ├── file.h │ ├── magdir │ │ ├── 386bsd │ │ ├── Header │ │ ├── Localstuff │ │ ├── OpenBSD │ │ ├── acorn │ │ ├── adi │ │ ├── adventure │ │ ├── allegro │ │ ├── alliant │ │ ├── alpha │ │ ├── amanda │ │ ├── amigaos │ │ ├── animation │ │ ├── apl │ │ ├── apple │ │ ├── applix │ │ ├── archive │ │ ├── asterix │ │ ├── att3b │ │ ├── audio │ │ ├── basis │ │ ├── bflt │ │ ├── blender │ │ ├── blit │ │ ├── bout │ │ ├── bsdi │ │ ├── btsnoop │ │ ├── c-lang │ │ ├── c64 │ │ ├── cad │ │ ├── cafebabe │ │ ├── cddb │ │ ├── chord │ │ ├── cisco │ │ ├── citrus │ │ ├── clarion │ │ ├── claris │ │ ├── clipper │ │ ├── commands │ │ ├── communications │ │ ├── compress │ │ ├── console │ │ ├── convex │ │ ├── cracklib │ │ ├── ctags │ │ ├── dact │ │ ├── database │ │ ├── diamond │ │ ├── diff │ │ ├── digital │ │ ├── dolby │ │ ├── dump │ │ ├── dyadic │ │ ├── editors │ │ ├── efi │ │ ├── elf │ │ ├── encore │ │ ├── epoc │ │ ├── erlang │ │ ├── esri │ │ ├── fcs │ │ ├── filesystems │ │ ├── flash │ │ ├── fonts │ │ ├── fortran │ │ ├── frame │ │ ├── freebsd │ │ ├── fsav │ │ ├── games │ │ ├── gcc │ │ ├── geos │ │ ├── gimp │ │ ├── gnome-keyring │ │ ├── gnu │ │ ├── gnumeric │ │ ├── grace │ │ ├── gringotts │ │ ├── hitachi-sh │ │ ├── hp │ │ ├── human68k │ │ ├── ibm370 │ │ ├── ibm6000 │ │ ├── iff │ │ ├── images │ │ ├── inform │ │ ├── intel │ │ ├── interleaf │ │ ├── island │ │ ├── ispell │ │ ├── java │ │ ├── jpeg │ │ ├── karma │ │ ├── kde │ │ ├── ktrace │ │ ├── lecter │ │ ├── lex │ │ ├── lif │ │ ├── linux │ │ ├── lisp │ │ ├── llvm │ │ ├── lua │ │ ├── luks │ │ ├── mach │ │ ├── macintosh │ │ ├── magic │ │ ├── mail.news │ │ ├── maple │ │ ├── mathcad │ │ ├── mathematica │ │ ├── matroska │ │ ├── mcrypt │ │ ├── mercurial │ │ ├── mime │ │ ├── mips │ │ ├── mirage │ │ ├── misctools │ │ ├── mkid │ │ ├── mlssa │ │ ├── mmdf │ │ ├── modem │ │ ├── motorola │ │ ├── mozilla │ │ ├── msdos │ │ ├── msvc │ │ ├── mup │ │ ├── natinst │ │ ├── ncr │ │ ├── netbsd │ │ ├── netscape │ │ ├── netware │ │ ├── news │ │ ├── nitpicker │ │ ├── ocaml │ │ ├── octave │ │ ├── ole2compounddocs │ │ ├── olf │ │ ├── os2 │ │ ├── os400 │ │ ├── os9 │ │ ├── osf1 │ │ ├── palm │ │ ├── parix │ │ ├── pbm │ │ ├── pdf │ │ ├── pdp │ │ ├── perl │ │ ├── pgp │ │ ├── pkgadd │ │ ├── plan9 │ │ ├── plus5 │ │ ├── printer │ │ ├── project │ │ ├── psdbms │ │ ├── psion │ │ ├── pulsar │ │ ├── pyramid │ │ ├── python │ │ ├── revision │ │ ├── riff │ │ ├── rpm │ │ ├── rtf │ │ ├── sc │ │ ├── sccs │ │ ├── scientific │ │ ├── securitycerts │ │ ├── sendmail │ │ ├── sequent │ │ ├── sgi │ │ ├── sgml │ │ ├── sharc │ │ ├── sinclair │ │ ├── sketch │ │ ├── smalltalk │ │ ├── sniffer │ │ ├── softquad │ │ ├── spec │ │ ├── spectrum │ │ ├── sql │ │ ├── ssh │ │ ├── ssl │ │ ├── sun │ │ ├── sysex │ │ ├── teapot │ │ ├── terminfo │ │ ├── tex │ │ ├── tgif │ │ ├── ti-8x │ │ ├── timezone │ │ ├── troff │ │ ├── tuxedo │ │ ├── typeset │ │ ├── unicode │ │ ├── unknown │ │ ├── uuencode │ │ ├── varied.out │ │ ├── varied.script │ │ ├── vax │ │ ├── vicar │ │ ├── virtutech │ │ ├── visx │ │ ├── vms │ │ ├── vmware │ │ ├── vorbis │ │ ├── vxl │ │ ├── wordprocessors │ │ ├── xdelta │ │ ├── xenix │ │ ├── xilinx │ │ ├── xo65 │ │ ├── xwindows │ │ ├── zilog │ │ └── zyxel │ ├── magic-common.c │ ├── magic-dump.c │ ├── magic-load.c │ ├── magic-test.c │ ├── magic.5 │ ├── magic.h │ ├── text.c │ ├── xmalloc.c │ └── xmalloc.h ├── find │ ├── Makefile │ ├── extern.h │ ├── find.1 │ ├── find.c │ ├── find.h │ ├── function.c │ ├── ls.c │ ├── main.c │ ├── misc.c │ ├── operator.c │ └── option.c ├── fmt │ ├── Makefile │ ├── fmt.1 │ └── fmt.c ├── fold │ ├── Makefile │ ├── fold.1 │ └── fold.c ├── from │ ├── Makefile │ ├── from.1 │ └── from.c ├── ftp │ ├── Makefile │ ├── cmds.c │ ├── cmds.h │ ├── cmdtab.c │ ├── complete.c │ ├── cookie.c │ ├── domacro.c │ ├── extern.h │ ├── fetch.c │ ├── ftp.1 │ ├── ftp.c │ ├── ftp_var.h │ ├── list.c │ ├── main.c │ ├── pathnames.h │ ├── ruserpass.c │ ├── small.c │ ├── small.h │ ├── stringlist.c │ ├── stringlist.h │ └── util.c ├── getconf │ ├── Makefile │ ├── getconf.1 │ └── getconf.c ├── getent │ ├── Makefile │ ├── getent.1 │ └── getent.c ├── getopt │ ├── Makefile │ ├── getopt.1 │ └── getopt.c ├── grep │ ├── Makefile │ ├── binary.c │ ├── file.c │ ├── grep.1 │ ├── grep.c │ ├── grep.h │ ├── mmfile.c │ ├── queue.c │ └── util.c ├── head │ ├── Makefile │ ├── head.1 │ └── head.c ├── hexdump │ ├── Makefile │ ├── conv.c │ ├── display.c │ ├── hexdump.1 │ ├── hexdump.c │ ├── hexdump.h │ ├── hexsyntax.c │ ├── od.1 │ ├── odsyntax.c │ └── parse.c ├── htpasswd │ ├── Makefile │ ├── htpasswd.1 │ └── htpasswd.c ├── id │ ├── Makefile │ ├── PORT_NOTES │ ├── groups.1 │ ├── id.1 │ ├── id.c │ └── whoami.1 ├── indent │ ├── Makefile │ ├── README │ ├── args.c │ ├── indent.1 │ ├── indent.c │ ├── indent_codes.h │ ├── indent_globs.h │ ├── io.c │ ├── lexi.c │ ├── parse.c │ └── pr_comment.c ├── join │ ├── Makefile │ ├── join.1 │ └── join.c ├── jot │ ├── Makefile │ ├── jot.1 │ └── jot.c ├── lam │ ├── Makefile │ ├── lam.1 │ └── lam.c ├── leave │ ├── Makefile │ ├── leave.1 │ └── leave.c ├── lndir │ ├── Makefile │ ├── lndir.1 │ └── lndir.c ├── logger │ ├── Makefile │ ├── logger.1 │ └── logger.c ├── logname │ ├── Makefile │ ├── logname.1 │ └── logname.c ├── look │ ├── Makefile │ ├── look.1 │ ├── look.c │ └── pathnames.h ├── lorder │ ├── Makefile │ ├── lorder.1 │ └── lorder.sh ├── mail │ ├── Makefile │ ├── USD.doc │ │ ├── Makefile │ │ ├── mail0.nr │ │ ├── mail1.nr │ │ ├── mail2.nr │ │ ├── mail3.nr │ │ ├── mail4.nr │ │ ├── mail5.nr │ │ ├── mail6.nr │ │ ├── mail7.nr │ │ ├── mail8.nr │ │ ├── mail9.nr │ │ └── maila.nr │ ├── aux.c │ ├── cmd1.c │ ├── cmd2.c │ ├── cmd3.c │ ├── cmdtab.c │ ├── collect.c │ ├── def.h │ ├── edit.c │ ├── extern.h │ ├── fio.c │ ├── getname.c │ ├── glob.h │ ├── head.c │ ├── lex.c │ ├── list.c │ ├── mail.1 │ ├── main.c │ ├── misc │ │ ├── mail.help │ │ ├── mail.rc │ │ └── mail.tildehelp │ ├── names.c │ ├── pathnames.h │ ├── popen.c │ ├── quit.c │ ├── rcv.h │ ├── send.c │ ├── strings.c │ ├── temp.c │ ├── tty.c │ ├── v7.local.c │ ├── vars.c │ └── version.c ├── mkdep │ ├── Makefile │ ├── mkdep.1 │ └── mkdep.gcc.sh ├── mktemp │ ├── Makefile │ ├── mktemp.1 │ └── mktemp.c ├── newsyslog │ ├── Makefile │ ├── newsyslog.8 │ └── newsyslog.c ├── nice │ ├── Makefile │ ├── nice.1 │ └── nice.c ├── nl │ ├── Makefile │ ├── nl.1 │ └── nl.c ├── nohup │ ├── Makefile │ ├── nohup.1 │ └── nohup.c ├── paste │ ├── Makefile │ ├── paste.1 │ └── paste.c ├── patch │ ├── Makefile │ ├── backupfile.c │ ├── backupfile.h │ ├── common.h │ ├── ed.c │ ├── ed.h │ ├── inp.c │ ├── inp.h │ ├── mkpath.c │ ├── patch.1 │ ├── patch.c │ ├── pathnames.h │ ├── pch.c │ ├── pch.h │ ├── util.c │ └── util.h ├── pkg-config │ ├── Makefile │ ├── OpenBSD │ │ └── PkgConfig.pm │ ├── pkg-config │ └── pkg-config.1 ├── pr │ ├── Makefile │ ├── egetopt.c │ ├── extern.h │ ├── pr.1 │ ├── pr.c │ └── pr.h ├── printenv │ ├── Makefile │ ├── printenv.1 │ └── printenv.c ├── printf │ ├── Makefile │ ├── printf.1 │ └── printf.c ├── rcs │ ├── Makefile │ ├── buf.c │ ├── buf.h │ ├── ci.1 │ ├── ci.c │ ├── co.1 │ ├── co.c │ ├── date.y │ ├── diff.c │ ├── diff.h │ ├── diff3.c │ ├── ident.1 │ ├── ident.c │ ├── merge.1 │ ├── merge.c │ ├── rcs.1 │ ├── rcs.c │ ├── rcs.h │ ├── rcsclean.1 │ ├── rcsclean.c │ ├── rcsdiff.1 │ ├── rcsdiff.c │ ├── rcsmerge.1 │ ├── rcsmerge.c │ ├── rcsnum.c │ ├── rcsparse.c │ ├── rcsparse.h │ ├── rcsprog.c │ ├── rcsprog.h │ ├── rcstime.c │ ├── rcsutil.c │ ├── rcsutil.h │ ├── rlog.1 │ ├── rlog.c │ ├── worklist.c │ ├── worklist.h │ ├── xmalloc.c │ └── xmalloc.h ├── readlink │ ├── Makefile │ ├── readlink.1 │ └── readlink.c ├── renice │ ├── Makefile │ ├── renice.8 │ └── renice.c ├── rev │ ├── Makefile │ ├── rev.1 │ └── rev.c ├── rs │ ├── Makefile │ ├── rs.1 │ ├── rs.c │ └── utf8.c ├── sdiff │ ├── Makefile │ ├── common.c │ ├── common.h │ ├── edit.c │ ├── extern.h │ ├── sdiff.1 │ └── sdiff.c ├── sed │ ├── Makefile │ ├── POSIX │ ├── TEST │ │ ├── hanoi.sed │ │ ├── math.sed │ │ └── sed.test │ ├── USD.doc │ │ ├── Makefile │ │ └── sed │ ├── compile.c │ ├── defs.h │ ├── extern.h │ ├── main.c │ ├── misc.c │ ├── process.c │ └── sed.1 ├── shar │ ├── Makefile │ ├── shar.1 │ └── shar.sh ├── signify │ ├── Makefile │ ├── crypto_api.c │ ├── crypto_api.h │ ├── fe25519.c │ ├── fe25519.h │ ├── ge25519.h │ ├── ge25519_base.data │ ├── mod_ed25519.c │ ├── mod_ge25519.c │ ├── sc25519.c │ ├── sc25519.h │ ├── signify.1 │ ├── signify.c │ ├── signify.h │ └── zsig.c ├── sort │ ├── Makefile │ ├── bwstring.c │ ├── bwstring.h │ ├── coll.c │ ├── coll.h │ ├── file.c │ ├── file.h │ ├── mem.c │ ├── mem.h │ ├── radixsort.c │ ├── radixsort.h │ ├── sort.1 │ ├── sort.c │ ├── sort.h │ ├── vsort.c │ └── vsort.h ├── spell │ ├── Makefile │ ├── american │ ├── british │ ├── look.c │ ├── special.4bsd │ ├── special.math │ ├── spell.1 │ ├── spell.ksh │ ├── spellprog.c │ └── stop ├── split │ ├── Makefile │ ├── split.1 │ └── split.c ├── stat │ ├── Makefile │ ├── PORT_NOTES │ ├── stat.1 │ └── stat.c ├── tail │ ├── Makefile │ ├── PORT_NOTES │ ├── extern.h │ ├── forward.c │ ├── forward_linux.c │ ├── misc.c │ ├── read.c │ ├── reverse.c │ ├── tail.1 │ └── tail.c ├── tee │ ├── Makefile │ ├── tee.1 │ └── tee.c ├── telnet │ ├── Makefile │ ├── README │ ├── commands.c │ ├── defines.h │ ├── externs.h │ ├── genget.c │ ├── main.c │ ├── network.c │ ├── ring.c │ ├── ring.h │ ├── sys_bsd.c │ ├── telnet.1 │ ├── telnet.c │ ├── telnet_locl.h │ ├── terminal.c │ └── utilities.c ├── tftp │ ├── Makefile │ ├── extern.h │ ├── main.c │ ├── tftp.1 │ ├── tftp.c │ ├── tftpsubs.c │ └── tftpsubs.h ├── time │ ├── Makefile │ ├── time.1 │ └── time.c ├── touch │ ├── Makefile │ ├── touch.1 │ └── touch.c ├── tr │ ├── Makefile │ ├── extern.h │ ├── str.c │ ├── tr.1 │ └── tr.c ├── true │ ├── Makefile │ ├── true.1 │ └── true.c ├── tsort │ ├── Makefile │ ├── tsort.1 │ └── tsort.c ├── tty │ ├── Makefile │ ├── tty.1 │ └── tty.c ├── ul │ ├── Makefile │ ├── ul.1 │ └── ul.c ├── uname │ ├── Makefile │ ├── uname.1 │ └── uname.c ├── unexpand │ ├── Makefile │ └── unexpand.c ├── unifdef │ ├── Makefile │ ├── unifdef.1 │ ├── unifdef.c │ └── version.h ├── uniq │ ├── Makefile │ ├── uniq.1 │ └── uniq.c ├── units │ ├── Makefile │ ├── README │ ├── units.1 │ ├── units.c │ └── units.lib ├── unvis │ ├── Makefile │ ├── unvis.1 │ └── unvis.c ├── uudecode │ ├── Makefile │ └── uudecode.c ├── uuencode │ ├── Makefile │ ├── uuencode.1 │ ├── uuencode.5 │ └── uuencode.c ├── vacation │ ├── Makefile │ ├── vacation.1 │ └── vacation.c ├── vis │ ├── Makefile │ ├── foldit.c │ ├── vis.1 │ └── vis.c ├── wc │ ├── Makefile │ ├── wc.1 │ └── wc.c ├── what │ ├── Makefile │ ├── what.1 │ └── what.c ├── which │ ├── Makefile │ ├── whereis.1 │ ├── which.1 │ └── which.c ├── whois │ ├── Makefile │ ├── whois.1 │ └── whois.c ├── xargs │ ├── Makefile │ ├── pathnames.h │ ├── strnsubst.c │ ├── xargs.1 │ └── xargs.c ├── xinstall │ ├── Makefile │ ├── PORT_NOTES │ ├── install.1 │ ├── pathnames.h │ └── xinstall.c └── yes │ ├── Makefile │ ├── yes.1 │ └── yes.c └── usr.sbin ├── Makefile ├── Makefile.inc ├── chroot ├── Makefile ├── chroot.8 └── chroot.c ├── dev_mkdb ├── Makefile ├── dev_mkdb.8 └── dev_mkdb.c ├── mtree ├── Makefile ├── PORT_NOTES ├── compare.c ├── crc.c ├── create.c ├── extern.h ├── misc.c ├── mtree.8 ├── mtree.c ├── mtree.h ├── spec.c └── verify.c └── rdate ├── Makefile ├── ntp.c ├── ntpleaps.c ├── ntpleaps.h ├── rdate.8 ├── rdate.c └── rfc868time.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/Makefile -------------------------------------------------------------------------------- /OPENBSD_BRANCH: -------------------------------------------------------------------------------- 1 | OPENBSD_6_3 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/README -------------------------------------------------------------------------------- /README.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/README.sh -------------------------------------------------------------------------------- /bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/Makefile -------------------------------------------------------------------------------- /bin/Makefile.inc: -------------------------------------------------------------------------------- 1 | BINDIR?= ${bindir} 2 | -------------------------------------------------------------------------------- /bin/cat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cat/Makefile -------------------------------------------------------------------------------- /bin/cat/cat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cat/cat.1 -------------------------------------------------------------------------------- /bin/cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cat/cat.c -------------------------------------------------------------------------------- /bin/chmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/Makefile -------------------------------------------------------------------------------- /bin/chmod/PORT_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/PORT_NOTES -------------------------------------------------------------------------------- /bin/chmod/chflags.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/chflags.1 -------------------------------------------------------------------------------- /bin/chmod/chgrp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/chgrp.1 -------------------------------------------------------------------------------- /bin/chmod/chmod.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/chmod.1 -------------------------------------------------------------------------------- /bin/chmod/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/chmod.c -------------------------------------------------------------------------------- /bin/chmod/chown.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/chmod/chown.8 -------------------------------------------------------------------------------- /bin/cp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cp/Makefile -------------------------------------------------------------------------------- /bin/cp/cp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cp/cp.1 -------------------------------------------------------------------------------- /bin/cp/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cp/cp.c -------------------------------------------------------------------------------- /bin/cp/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cp/extern.h -------------------------------------------------------------------------------- /bin/cp/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/cp/utils.c -------------------------------------------------------------------------------- /bin/date/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/date/Makefile -------------------------------------------------------------------------------- /bin/date/date.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/date/date.1 -------------------------------------------------------------------------------- /bin/date/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/date/date.c -------------------------------------------------------------------------------- /bin/dd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/Makefile -------------------------------------------------------------------------------- /bin/dd/PORT_NOTES: -------------------------------------------------------------------------------- 1 | No SIGINFO support, use SIGUSR1 instead 2 | -------------------------------------------------------------------------------- /bin/dd/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/args.c -------------------------------------------------------------------------------- /bin/dd/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/conv.c -------------------------------------------------------------------------------- /bin/dd/conv_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/conv_tab.c -------------------------------------------------------------------------------- /bin/dd/dd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/dd.1 -------------------------------------------------------------------------------- /bin/dd/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/dd.c -------------------------------------------------------------------------------- /bin/dd/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/dd.h -------------------------------------------------------------------------------- /bin/dd/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/extern.h -------------------------------------------------------------------------------- /bin/dd/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/misc.c -------------------------------------------------------------------------------- /bin/dd/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/dd/position.c -------------------------------------------------------------------------------- /bin/df/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/df/Makefile -------------------------------------------------------------------------------- /bin/df/PORT_NOTES: -------------------------------------------------------------------------------- 1 | No support for raw devices on linux 2 | -------------------------------------------------------------------------------- /bin/df/df.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/df/df.1 -------------------------------------------------------------------------------- /bin/df/df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/df/df.c -------------------------------------------------------------------------------- /bin/df/ext2fs_df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/df/ext2fs_df.c -------------------------------------------------------------------------------- /bin/df/ffs_df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/df/ffs_df.c -------------------------------------------------------------------------------- /bin/domainname/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/domainname/Makefile -------------------------------------------------------------------------------- /bin/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/echo/Makefile -------------------------------------------------------------------------------- /bin/echo/echo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/echo/echo.1 -------------------------------------------------------------------------------- /bin/echo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/echo/echo.c -------------------------------------------------------------------------------- /bin/ed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/Makefile -------------------------------------------------------------------------------- /bin/ed/POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/POSIX -------------------------------------------------------------------------------- /bin/ed/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/README -------------------------------------------------------------------------------- /bin/ed/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/buf.c -------------------------------------------------------------------------------- /bin/ed/ed.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/ed.1 -------------------------------------------------------------------------------- /bin/ed/ed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/ed.h -------------------------------------------------------------------------------- /bin/ed/glbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/glbl.c -------------------------------------------------------------------------------- /bin/ed/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/io.c -------------------------------------------------------------------------------- /bin/ed/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/main.c -------------------------------------------------------------------------------- /bin/ed/re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/re.c -------------------------------------------------------------------------------- /bin/ed/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/sub.c -------------------------------------------------------------------------------- /bin/ed/test/=.err: -------------------------------------------------------------------------------- 1 | 1,$= 2 | -------------------------------------------------------------------------------- /bin/ed/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/Makefile -------------------------------------------------------------------------------- /bin/ed/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/README -------------------------------------------------------------------------------- /bin/ed/test/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/TODO -------------------------------------------------------------------------------- /bin/ed/test/a.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/a.d -------------------------------------------------------------------------------- /bin/ed/test/a.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/a.r -------------------------------------------------------------------------------- /bin/ed/test/a.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/a.t -------------------------------------------------------------------------------- /bin/ed/test/a1.err: -------------------------------------------------------------------------------- 1 | 1,$a 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/a2.err: -------------------------------------------------------------------------------- 1 | aa 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/addr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/addr.d -------------------------------------------------------------------------------- /bin/ed/test/addr.r: -------------------------------------------------------------------------------- 1 | line 2 2 | line9 3 | -------------------------------------------------------------------------------- /bin/ed/test/addr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/addr.t -------------------------------------------------------------------------------- /bin/ed/test/addr1.err: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /bin/ed/test/addr2.err: -------------------------------------------------------------------------------- 1 | -100 2 | -------------------------------------------------------------------------------- /bin/ed/test/ascii.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/ascii.d -------------------------------------------------------------------------------- /bin/ed/test/ascii.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/ascii.r -------------------------------------------------------------------------------- /bin/ed/test/ascii.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/bang1.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/bang1.err: -------------------------------------------------------------------------------- 1 | .!date 2 | -------------------------------------------------------------------------------- /bin/ed/test/bang1.r: -------------------------------------------------------------------------------- 1 | okay 2 | -------------------------------------------------------------------------------- /bin/ed/test/bang1.t: -------------------------------------------------------------------------------- 1 | !read one 2 | hello, world 3 | a 4 | okay 5 | . 6 | -------------------------------------------------------------------------------- /bin/ed/test/bang2.err: -------------------------------------------------------------------------------- 1 | !! 2 | -------------------------------------------------------------------------------- /bin/ed/test/c.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/c.d -------------------------------------------------------------------------------- /bin/ed/test/c.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/c.r -------------------------------------------------------------------------------- /bin/ed/test/c.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/c.t -------------------------------------------------------------------------------- /bin/ed/test/c1.err: -------------------------------------------------------------------------------- 1 | cc 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/c2.err: -------------------------------------------------------------------------------- 1 | 0c 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/ckscripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/ckscripts.sh -------------------------------------------------------------------------------- /bin/ed/test/d.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/d.d -------------------------------------------------------------------------------- /bin/ed/test/d.err: -------------------------------------------------------------------------------- 1 | dd 2 | -------------------------------------------------------------------------------- /bin/ed/test/d.r: -------------------------------------------------------------------------------- 1 | line 2 2 | -------------------------------------------------------------------------------- /bin/ed/test/d.t: -------------------------------------------------------------------------------- 1 | 1d 2 | 2;+1d 3 | $d 4 | -------------------------------------------------------------------------------- /bin/ed/test/e1.d: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /bin/ed/test/e1.err: -------------------------------------------------------------------------------- 1 | ee e1.err 2 | -------------------------------------------------------------------------------- /bin/ed/test/e1.r: -------------------------------------------------------------------------------- 1 | E e1.t 2 | -------------------------------------------------------------------------------- /bin/ed/test/e1.t: -------------------------------------------------------------------------------- 1 | E e1.t 2 | -------------------------------------------------------------------------------- /bin/ed/test/e2.d: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e2.err: -------------------------------------------------------------------------------- 1 | .e e2.err 2 | -------------------------------------------------------------------------------- /bin/ed/test/e2.r: -------------------------------------------------------------------------------- 1 | hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e2.t: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e3.d: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e3.err: -------------------------------------------------------------------------------- 1 | ee.err 2 | -------------------------------------------------------------------------------- /bin/ed/test/e3.r: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e3.t: -------------------------------------------------------------------------------- 1 | E 2 | -------------------------------------------------------------------------------- /bin/ed/test/e4.d: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e4.r: -------------------------------------------------------------------------------- 1 | E !echo hello world- 2 | -------------------------------------------------------------------------------- /bin/ed/test/e4.t: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /bin/ed/test/f1.err: -------------------------------------------------------------------------------- 1 | .f f1.err 2 | -------------------------------------------------------------------------------- /bin/ed/test/f2.err: -------------------------------------------------------------------------------- 1 | ff1.err 2 | -------------------------------------------------------------------------------- /bin/ed/test/g1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g1.d -------------------------------------------------------------------------------- /bin/ed/test/g1.err: -------------------------------------------------------------------------------- 1 | g/./s //x/ 2 | -------------------------------------------------------------------------------- /bin/ed/test/g1.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g1.r -------------------------------------------------------------------------------- /bin/ed/test/g1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g1.t -------------------------------------------------------------------------------- /bin/ed/test/g2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g2.d -------------------------------------------------------------------------------- /bin/ed/test/g2.err: -------------------------------------------------------------------------------- 1 | g//s/./x/ 2 | -------------------------------------------------------------------------------- /bin/ed/test/g2.r: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /bin/ed/test/g2.t: -------------------------------------------------------------------------------- 1 | g/[2-4]/-1,+1c\ 2 | hello world 3 | -------------------------------------------------------------------------------- /bin/ed/test/g3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g3.d -------------------------------------------------------------------------------- /bin/ed/test/g3.err: -------------------------------------------------------------------------------- 1 | g 2 | -------------------------------------------------------------------------------- /bin/ed/test/g3.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g3.r -------------------------------------------------------------------------------- /bin/ed/test/g3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g3.t -------------------------------------------------------------------------------- /bin/ed/test/g4.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g4.d -------------------------------------------------------------------------------- /bin/ed/test/g4.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g4.r -------------------------------------------------------------------------------- /bin/ed/test/g4.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g4.t -------------------------------------------------------------------------------- /bin/ed/test/g5.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g5.d -------------------------------------------------------------------------------- /bin/ed/test/g5.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/g5.r -------------------------------------------------------------------------------- /bin/ed/test/g5.t: -------------------------------------------------------------------------------- 1 | g/./1,3t$\ 2 | 1d 3 | -------------------------------------------------------------------------------- /bin/ed/test/h.err: -------------------------------------------------------------------------------- 1 | .h 2 | -------------------------------------------------------------------------------- /bin/ed/test/i.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/i.d -------------------------------------------------------------------------------- /bin/ed/test/i.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/i.r -------------------------------------------------------------------------------- /bin/ed/test/i.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/i.t -------------------------------------------------------------------------------- /bin/ed/test/i1.err: -------------------------------------------------------------------------------- 1 | 1,$i 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/i2.err: -------------------------------------------------------------------------------- 1 | ii 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/i3.err: -------------------------------------------------------------------------------- 1 | 0i 2 | hello world 3 | . 4 | -------------------------------------------------------------------------------- /bin/ed/test/j.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/j.d -------------------------------------------------------------------------------- /bin/ed/test/j.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/j.r -------------------------------------------------------------------------------- /bin/ed/test/j.t: -------------------------------------------------------------------------------- 1 | 1,1j 2 | 2,3j 3 | -------------------------------------------------------------------------------- /bin/ed/test/k.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/k.d -------------------------------------------------------------------------------- /bin/ed/test/k.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/k.r -------------------------------------------------------------------------------- /bin/ed/test/k.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/k.t -------------------------------------------------------------------------------- /bin/ed/test/k1.err: -------------------------------------------------------------------------------- 1 | 1,$ka 2 | -------------------------------------------------------------------------------- /bin/ed/test/k2.err: -------------------------------------------------------------------------------- 1 | kA 2 | -------------------------------------------------------------------------------- /bin/ed/test/k3.err: -------------------------------------------------------------------------------- 1 | 0ka 2 | -------------------------------------------------------------------------------- /bin/ed/test/k4.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | .ka 5 | 'ad 6 | 'ap 7 | -------------------------------------------------------------------------------- /bin/ed/test/l.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/l.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/l.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/m.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/m.d -------------------------------------------------------------------------------- /bin/ed/test/m.err: -------------------------------------------------------------------------------- 1 | a 2 | hello world 3 | . 4 | 1,$m1 5 | -------------------------------------------------------------------------------- /bin/ed/test/m.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/m.r -------------------------------------------------------------------------------- /bin/ed/test/m.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/m.t -------------------------------------------------------------------------------- /bin/ed/test/mkscripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/mkscripts.sh -------------------------------------------------------------------------------- /bin/ed/test/n.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/n.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/n.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/nl.err: -------------------------------------------------------------------------------- 1 | ,1 2 | -------------------------------------------------------------------------------- /bin/ed/test/nl1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/nl1.d -------------------------------------------------------------------------------- /bin/ed/test/nl1.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/nl1.r -------------------------------------------------------------------------------- /bin/ed/test/nl1.t: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | 4 | 0a 5 | 6 | 7 | hello world 8 | . 9 | -------------------------------------------------------------------------------- /bin/ed/test/nl2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/nl2.d -------------------------------------------------------------------------------- /bin/ed/test/nl2.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/nl2.r -------------------------------------------------------------------------------- /bin/ed/test/nl2.t: -------------------------------------------------------------------------------- 1 | a 2 | hello world 3 | . 4 | 0;/./ 5 | -------------------------------------------------------------------------------- /bin/ed/test/p.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/p.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/p.t: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/q.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/q.r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/q.t: -------------------------------------------------------------------------------- 1 | w q.o 2 | a 3 | hello 4 | . 5 | q 6 | -------------------------------------------------------------------------------- /bin/ed/test/q1.err: -------------------------------------------------------------------------------- 1 | .q 2 | -------------------------------------------------------------------------------- /bin/ed/test/r1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/r1.d -------------------------------------------------------------------------------- /bin/ed/test/r1.err: -------------------------------------------------------------------------------- 1 | 1,$r r1.err 2 | -------------------------------------------------------------------------------- /bin/ed/test/r1.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/r1.r -------------------------------------------------------------------------------- /bin/ed/test/r1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/r1.t -------------------------------------------------------------------------------- /bin/ed/test/r2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/r2.d -------------------------------------------------------------------------------- /bin/ed/test/r2.err: -------------------------------------------------------------------------------- 1 | r a-good-book 2 | -------------------------------------------------------------------------------- /bin/ed/test/r2.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/r2.r -------------------------------------------------------------------------------- /bin/ed/test/r2.t: -------------------------------------------------------------------------------- 1 | r 2 | -------------------------------------------------------------------------------- /bin/ed/test/r3.d: -------------------------------------------------------------------------------- 1 | r r3.t 2 | -------------------------------------------------------------------------------- /bin/ed/test/r3.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/r3.r -------------------------------------------------------------------------------- /bin/ed/test/r3.t: -------------------------------------------------------------------------------- 1 | r r3.t 2 | -------------------------------------------------------------------------------- /bin/ed/test/s1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/s1.d -------------------------------------------------------------------------------- /bin/ed/test/s1.err: -------------------------------------------------------------------------------- 1 | s . x 2 | -------------------------------------------------------------------------------- /bin/ed/test/s1.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/s1.r -------------------------------------------------------------------------------- /bin/ed/test/s1.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/s1.t -------------------------------------------------------------------------------- /bin/ed/test/s10.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | s/[h[.]/x/ 5 | -------------------------------------------------------------------------------- /bin/ed/test/s2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/s2.d -------------------------------------------------------------------------------- /bin/ed/test/s2.err: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | . 4 | s/x*/a/g 5 | -------------------------------------------------------------------------------- /bin/ed/test/s2.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/s2.r -------------------------------------------------------------------------------- /bin/ed/test/s2.t: -------------------------------------------------------------------------------- 1 | ,s/./(&)/3 2 | s/$/00 3 | 2s//%/g 4 | s/^l 5 | -------------------------------------------------------------------------------- /bin/ed/test/s3.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/ed/test/s3.err: -------------------------------------------------------------------------------- 1 | s/[xyx/a/ 2 | -------------------------------------------------------------------------------- /bin/ed/test/s3.r: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /bin/ed/test/s3.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/s3.t -------------------------------------------------------------------------------- /bin/ed/test/s4.err: -------------------------------------------------------------------------------- 1 | s/\a\b\c/xyz/ 2 | -------------------------------------------------------------------------------- /bin/ed/test/s5.err: -------------------------------------------------------------------------------- 1 | s//xyz/ 2 | -------------------------------------------------------------------------------- /bin/ed/test/s6.err: -------------------------------------------------------------------------------- 1 | s 2 | -------------------------------------------------------------------------------- /bin/ed/test/s7.err: -------------------------------------------------------------------------------- 1 | a 2 | hello world 3 | . 4 | /./ 5 | sr 6 | -------------------------------------------------------------------------------- /bin/ed/test/s8.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | s/[h[=]/x/ 5 | -------------------------------------------------------------------------------- /bin/ed/test/s9.err: -------------------------------------------------------------------------------- 1 | a 2 | hello 3 | . 4 | s/[h[:]/x/ 5 | -------------------------------------------------------------------------------- /bin/ed/test/t.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/t.d -------------------------------------------------------------------------------- /bin/ed/test/t.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/t.r -------------------------------------------------------------------------------- /bin/ed/test/t.t: -------------------------------------------------------------------------------- 1 | 1t1 2 | 2,3t2 3 | ,t$ 4 | -------------------------------------------------------------------------------- /bin/ed/test/t1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/t1.d -------------------------------------------------------------------------------- /bin/ed/test/t1.err: -------------------------------------------------------------------------------- 1 | tt 2 | -------------------------------------------------------------------------------- /bin/ed/test/t1.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/t1.r -------------------------------------------------------------------------------- /bin/ed/test/t1.t: -------------------------------------------------------------------------------- 1 | 1t0 2 | 2,3t2 3 | ,t$ 4 | -------------------------------------------------------------------------------- /bin/ed/test/t2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/t2.d -------------------------------------------------------------------------------- /bin/ed/test/t2.err: -------------------------------------------------------------------------------- 1 | t0;-1 2 | -------------------------------------------------------------------------------- /bin/ed/test/t2.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/t2.r -------------------------------------------------------------------------------- /bin/ed/test/t2.t: -------------------------------------------------------------------------------- 1 | t0;/./ 2 | -------------------------------------------------------------------------------- /bin/ed/test/u.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/u.d -------------------------------------------------------------------------------- /bin/ed/test/u.err: -------------------------------------------------------------------------------- 1 | .u 2 | -------------------------------------------------------------------------------- /bin/ed/test/u.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/u.r -------------------------------------------------------------------------------- /bin/ed/test/u.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/u.t -------------------------------------------------------------------------------- /bin/ed/test/v.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/v.d -------------------------------------------------------------------------------- /bin/ed/test/v.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/v.r -------------------------------------------------------------------------------- /bin/ed/test/v.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/v.t -------------------------------------------------------------------------------- /bin/ed/test/w.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/w.d -------------------------------------------------------------------------------- /bin/ed/test/w.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/w.r -------------------------------------------------------------------------------- /bin/ed/test/w.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/test/w.t -------------------------------------------------------------------------------- /bin/ed/test/w1.err: -------------------------------------------------------------------------------- 1 | w /to/some/far-away/place 2 | -------------------------------------------------------------------------------- /bin/ed/test/w2.err: -------------------------------------------------------------------------------- 1 | ww.o 2 | -------------------------------------------------------------------------------- /bin/ed/test/w3.err: -------------------------------------------------------------------------------- 1 | wqp w.o 2 | -------------------------------------------------------------------------------- /bin/ed/test/x.err: -------------------------------------------------------------------------------- 1 | .x 2 | -------------------------------------------------------------------------------- /bin/ed/test/z.err: -------------------------------------------------------------------------------- 1 | z 2 | z 3 | -------------------------------------------------------------------------------- /bin/ed/undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ed/undo.c -------------------------------------------------------------------------------- /bin/expr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/expr/Makefile -------------------------------------------------------------------------------- /bin/expr/expr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/expr/expr.1 -------------------------------------------------------------------------------- /bin/expr/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/expr/expr.c -------------------------------------------------------------------------------- /bin/hostname/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/hostname/Makefile -------------------------------------------------------------------------------- /bin/hostname/hostname.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/hostname/hostname.1 -------------------------------------------------------------------------------- /bin/hostname/hostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/hostname/hostname.c -------------------------------------------------------------------------------- /bin/kill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/kill/Makefile -------------------------------------------------------------------------------- /bin/kill/kill.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/kill/kill.1 -------------------------------------------------------------------------------- /bin/kill/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/kill/kill.c -------------------------------------------------------------------------------- /bin/ksh/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/CONTRIBUTORS -------------------------------------------------------------------------------- /bin/ksh/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/LEGAL -------------------------------------------------------------------------------- /bin/ksh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/Makefile -------------------------------------------------------------------------------- /bin/ksh/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/NOTES -------------------------------------------------------------------------------- /bin/ksh/PROJECTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/PROJECTS -------------------------------------------------------------------------------- /bin/ksh/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/README -------------------------------------------------------------------------------- /bin/ksh/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/alloc.c -------------------------------------------------------------------------------- /bin/ksh/c_ksh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/c_ksh.c -------------------------------------------------------------------------------- /bin/ksh/c_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/c_sh.c -------------------------------------------------------------------------------- /bin/ksh/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/c_test.c -------------------------------------------------------------------------------- /bin/ksh/c_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/c_test.h -------------------------------------------------------------------------------- /bin/ksh/c_ulimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/c_ulimit.c -------------------------------------------------------------------------------- /bin/ksh/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/config.h -------------------------------------------------------------------------------- /bin/ksh/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/edit.c -------------------------------------------------------------------------------- /bin/ksh/edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/edit.h -------------------------------------------------------------------------------- /bin/ksh/emacs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/emacs.c -------------------------------------------------------------------------------- /bin/ksh/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/eval.c -------------------------------------------------------------------------------- /bin/ksh/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/exec.c -------------------------------------------------------------------------------- /bin/ksh/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/expand.h -------------------------------------------------------------------------------- /bin/ksh/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/expr.c -------------------------------------------------------------------------------- /bin/ksh/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/history.c -------------------------------------------------------------------------------- /bin/ksh/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/io.c -------------------------------------------------------------------------------- /bin/ksh/jobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/jobs.c -------------------------------------------------------------------------------- /bin/ksh/ksh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/ksh.1 -------------------------------------------------------------------------------- /bin/ksh/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/lex.c -------------------------------------------------------------------------------- /bin/ksh/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/lex.h -------------------------------------------------------------------------------- /bin/ksh/mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/mail.c -------------------------------------------------------------------------------- /bin/ksh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/main.c -------------------------------------------------------------------------------- /bin/ksh/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/misc.c -------------------------------------------------------------------------------- /bin/ksh/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/path.c -------------------------------------------------------------------------------- /bin/ksh/sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/sh.1 -------------------------------------------------------------------------------- /bin/ksh/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/sh.h -------------------------------------------------------------------------------- /bin/ksh/shf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/shf.c -------------------------------------------------------------------------------- /bin/ksh/shf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/shf.h -------------------------------------------------------------------------------- /bin/ksh/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/syn.c -------------------------------------------------------------------------------- /bin/ksh/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/table.c -------------------------------------------------------------------------------- /bin/ksh/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/table.h -------------------------------------------------------------------------------- /bin/ksh/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/trap.c -------------------------------------------------------------------------------- /bin/ksh/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/tree.c -------------------------------------------------------------------------------- /bin/ksh/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/tree.h -------------------------------------------------------------------------------- /bin/ksh/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/tty.c -------------------------------------------------------------------------------- /bin/ksh/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/tty.h -------------------------------------------------------------------------------- /bin/ksh/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/var.c -------------------------------------------------------------------------------- /bin/ksh/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/version.c -------------------------------------------------------------------------------- /bin/ksh/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ksh/vi.c -------------------------------------------------------------------------------- /bin/ln/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ln/Makefile -------------------------------------------------------------------------------- /bin/ln/ln.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ln/ln.1 -------------------------------------------------------------------------------- /bin/ln/ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ln/ln.c -------------------------------------------------------------------------------- /bin/ln/symlink.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ln/symlink.7 -------------------------------------------------------------------------------- /bin/ls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/Makefile -------------------------------------------------------------------------------- /bin/ls/PORT_NOTES: -------------------------------------------------------------------------------- 1 | No support for file flags (-o) 2 | -------------------------------------------------------------------------------- /bin/ls/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/cmp.c -------------------------------------------------------------------------------- /bin/ls/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/extern.h -------------------------------------------------------------------------------- /bin/ls/ls.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/ls.1 -------------------------------------------------------------------------------- /bin/ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/ls.c -------------------------------------------------------------------------------- /bin/ls/ls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/ls.h -------------------------------------------------------------------------------- /bin/ls/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/main.c -------------------------------------------------------------------------------- /bin/ls/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/print.c -------------------------------------------------------------------------------- /bin/ls/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/utf8.c -------------------------------------------------------------------------------- /bin/ls/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/ls/util.c -------------------------------------------------------------------------------- /bin/md5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/md5/Makefile -------------------------------------------------------------------------------- /bin/md5/cksum.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/md5/cksum.1 -------------------------------------------------------------------------------- /bin/md5/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/md5/crc.c -------------------------------------------------------------------------------- /bin/md5/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/md5/crc.h -------------------------------------------------------------------------------- /bin/md5/md5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/md5/md5.1 -------------------------------------------------------------------------------- /bin/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/md5/md5.c -------------------------------------------------------------------------------- /bin/mkdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mkdir/Makefile -------------------------------------------------------------------------------- /bin/mkdir/mkdir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mkdir/mkdir.1 -------------------------------------------------------------------------------- /bin/mkdir/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mkdir/mkdir.c -------------------------------------------------------------------------------- /bin/mv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mv/Makefile -------------------------------------------------------------------------------- /bin/mv/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mv/cp.c -------------------------------------------------------------------------------- /bin/mv/mv.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mv/mv.1 -------------------------------------------------------------------------------- /bin/mv/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mv/mv.c -------------------------------------------------------------------------------- /bin/mv/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/mv/rm.c -------------------------------------------------------------------------------- /bin/pax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/Makefile -------------------------------------------------------------------------------- /bin/pax/ar_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/ar_io.c -------------------------------------------------------------------------------- /bin/pax/ar_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/ar_subs.c -------------------------------------------------------------------------------- /bin/pax/buf_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/buf_subs.c -------------------------------------------------------------------------------- /bin/pax/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/cache.c -------------------------------------------------------------------------------- /bin/pax/cpio.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/cpio.1 -------------------------------------------------------------------------------- /bin/pax/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/cpio.c -------------------------------------------------------------------------------- /bin/pax/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/cpio.h -------------------------------------------------------------------------------- /bin/pax/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/extern.h -------------------------------------------------------------------------------- /bin/pax/file_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/file_subs.c -------------------------------------------------------------------------------- /bin/pax/ftree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/ftree.c -------------------------------------------------------------------------------- /bin/pax/gen_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/gen_subs.c -------------------------------------------------------------------------------- /bin/pax/getoldopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/getoldopt.c -------------------------------------------------------------------------------- /bin/pax/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/options.c -------------------------------------------------------------------------------- /bin/pax/pat_rep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/pat_rep.c -------------------------------------------------------------------------------- /bin/pax/pax.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/pax.1 -------------------------------------------------------------------------------- /bin/pax/pax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/pax.c -------------------------------------------------------------------------------- /bin/pax/pax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/pax.h -------------------------------------------------------------------------------- /bin/pax/sel_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/sel_subs.c -------------------------------------------------------------------------------- /bin/pax/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/tables.c -------------------------------------------------------------------------------- /bin/pax/tar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/tar.1 -------------------------------------------------------------------------------- /bin/pax/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/tar.c -------------------------------------------------------------------------------- /bin/pax/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/tar.h -------------------------------------------------------------------------------- /bin/pax/tty_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pax/tty_subs.c -------------------------------------------------------------------------------- /bin/pwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pwd/Makefile -------------------------------------------------------------------------------- /bin/pwd/pwd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pwd/pwd.1 -------------------------------------------------------------------------------- /bin/pwd/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/pwd/pwd.c -------------------------------------------------------------------------------- /bin/rm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/rm/Makefile -------------------------------------------------------------------------------- /bin/rm/rm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/rm/rm.1 -------------------------------------------------------------------------------- /bin/rm/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/rm/rm.c -------------------------------------------------------------------------------- /bin/rmdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/rmdir/Makefile -------------------------------------------------------------------------------- /bin/rmdir/rmdir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/rmdir/rmdir.1 -------------------------------------------------------------------------------- /bin/rmdir/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/rmdir/rmdir.c -------------------------------------------------------------------------------- /bin/sleep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/sleep/Makefile -------------------------------------------------------------------------------- /bin/sleep/sleep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/sleep/sleep.1 -------------------------------------------------------------------------------- /bin/sleep/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/sleep/sleep.c -------------------------------------------------------------------------------- /bin/stty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/Makefile -------------------------------------------------------------------------------- /bin/stty/cchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/cchar.c -------------------------------------------------------------------------------- /bin/stty/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/extern.h -------------------------------------------------------------------------------- /bin/stty/gfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/gfmt.c -------------------------------------------------------------------------------- /bin/stty/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/key.c -------------------------------------------------------------------------------- /bin/stty/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/modes.c -------------------------------------------------------------------------------- /bin/stty/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/print.c -------------------------------------------------------------------------------- /bin/stty/stty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/stty.1 -------------------------------------------------------------------------------- /bin/stty/stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/stty.c -------------------------------------------------------------------------------- /bin/stty/stty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/stty/stty.h -------------------------------------------------------------------------------- /bin/sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/sync/Makefile -------------------------------------------------------------------------------- /bin/sync/sync.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/sync/sync.8 -------------------------------------------------------------------------------- /bin/sync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/sync/sync.c -------------------------------------------------------------------------------- /bin/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/test/Makefile -------------------------------------------------------------------------------- /bin/test/test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/test/test.1 -------------------------------------------------------------------------------- /bin/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/bin/test/test.c -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/config.h.in -------------------------------------------------------------------------------- /config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/config.mk.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/configure.ac -------------------------------------------------------------------------------- /import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/import.sh -------------------------------------------------------------------------------- /include/arpa/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/arpa/tftp.h -------------------------------------------------------------------------------- /include/blf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/blf.h -------------------------------------------------------------------------------- /include/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/compat.h -------------------------------------------------------------------------------- /include/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/db.h -------------------------------------------------------------------------------- /include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/err.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/fcntl.h -------------------------------------------------------------------------------- /include/fts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/fts.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/glob.h -------------------------------------------------------------------------------- /include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/grp.h -------------------------------------------------------------------------------- /include/imsg.h: -------------------------------------------------------------------------------- 1 | ../lib/liboutil/imsg.h -------------------------------------------------------------------------------- /include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/libgen.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/md5.h -------------------------------------------------------------------------------- /include/ndbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/ndbm.h -------------------------------------------------------------------------------- /include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/netinet/in.h -------------------------------------------------------------------------------- /include/netinet6/in6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/netinet6/in6.h -------------------------------------------------------------------------------- /include/ohash.h: -------------------------------------------------------------------------------- 1 | ../lib/liboutil/ohash.h -------------------------------------------------------------------------------- /include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/paths.h -------------------------------------------------------------------------------- /include/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/poll.h -------------------------------------------------------------------------------- /include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/pwd.h -------------------------------------------------------------------------------- /include/pwd.h.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/pwd.h.1 -------------------------------------------------------------------------------- /include/readpassphrase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/readpassphrase.h -------------------------------------------------------------------------------- /include/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/regex.h -------------------------------------------------------------------------------- /include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/resolv.h -------------------------------------------------------------------------------- /include/rmd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/rmd160.h -------------------------------------------------------------------------------- /include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sha1.h -------------------------------------------------------------------------------- /include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sha2.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/stdarg.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/string.h -------------------------------------------------------------------------------- /include/sys/mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/mount.h -------------------------------------------------------------------------------- /include/sys/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/proc.h -------------------------------------------------------------------------------- /include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/queue.h -------------------------------------------------------------------------------- /include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/stat.h -------------------------------------------------------------------------------- /include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/sysctl.h -------------------------------------------------------------------------------- /include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/time.h -------------------------------------------------------------------------------- /include/sys/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/tree.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /include/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/termios.h -------------------------------------------------------------------------------- /include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/unistd.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- 1 | ../lib/liboutil/util.h -------------------------------------------------------------------------------- /include/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/vis.h -------------------------------------------------------------------------------- /include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/include/wchar.h -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/install-sh -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/libopenbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/Makefile -------------------------------------------------------------------------------- /lib/libopenbsd/db/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/db/README -------------------------------------------------------------------------------- /lib/libopenbsd/gen/fts.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/gen/fts.3 -------------------------------------------------------------------------------- /lib/libopenbsd/gen/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/gen/fts.c -------------------------------------------------------------------------------- /lib/libopenbsd/gen/vis.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/gen/vis.3 -------------------------------------------------------------------------------- /lib/libopenbsd/gen/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/gen/vis.c -------------------------------------------------------------------------------- /lib/libopenbsd/mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/libopenbsd/mkfile -------------------------------------------------------------------------------- /lib/liboutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/Makefile -------------------------------------------------------------------------------- /lib/liboutil/fparseln.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/fparseln.3 -------------------------------------------------------------------------------- /lib/liboutil/fparseln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/fparseln.c -------------------------------------------------------------------------------- /lib/liboutil/imsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/imsg.c -------------------------------------------------------------------------------- /lib/liboutil/imsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/imsg.h -------------------------------------------------------------------------------- /lib/liboutil/imsg_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/imsg_init.3 -------------------------------------------------------------------------------- /lib/liboutil/isduid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/isduid.3 -------------------------------------------------------------------------------- /lib/liboutil/logwtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/logwtmp.c -------------------------------------------------------------------------------- /lib/liboutil/ohash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/ohash.c -------------------------------------------------------------------------------- /lib/liboutil/ohash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/ohash.h -------------------------------------------------------------------------------- /lib/liboutil/pidfile.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/pidfile.3 -------------------------------------------------------------------------------- /lib/liboutil/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/pidfile.c -------------------------------------------------------------------------------- /lib/liboutil/readlabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/readlabel.c -------------------------------------------------------------------------------- /lib/liboutil/shlib_version: -------------------------------------------------------------------------------- 1 | major=13 2 | minor=0 3 | -------------------------------------------------------------------------------- /lib/liboutil/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/util.h -------------------------------------------------------------------------------- /lib/liboutil/uucplock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/uucplock.3 -------------------------------------------------------------------------------- /lib/liboutil/uucplock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/lib/liboutil/uucplock.c -------------------------------------------------------------------------------- /libexec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/Makefile -------------------------------------------------------------------------------- /libexec/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/Makefile.inc -------------------------------------------------------------------------------- /libexec/tradcpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/Makefile -------------------------------------------------------------------------------- /libexec/tradcpp/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/array.c -------------------------------------------------------------------------------- /libexec/tradcpp/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/array.h -------------------------------------------------------------------------------- /libexec/tradcpp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/config.h -------------------------------------------------------------------------------- /libexec/tradcpp/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/eval.c -------------------------------------------------------------------------------- /libexec/tradcpp/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/eval.h -------------------------------------------------------------------------------- /libexec/tradcpp/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/files.c -------------------------------------------------------------------------------- /libexec/tradcpp/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/files.h -------------------------------------------------------------------------------- /libexec/tradcpp/macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/macro.c -------------------------------------------------------------------------------- /libexec/tradcpp/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/macro.h -------------------------------------------------------------------------------- /libexec/tradcpp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/main.c -------------------------------------------------------------------------------- /libexec/tradcpp/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/mode.h -------------------------------------------------------------------------------- /libexec/tradcpp/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/output.c -------------------------------------------------------------------------------- /libexec/tradcpp/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/output.h -------------------------------------------------------------------------------- /libexec/tradcpp/place.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/place.c -------------------------------------------------------------------------------- /libexec/tradcpp/place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/place.h -------------------------------------------------------------------------------- /libexec/tradcpp/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/utils.c -------------------------------------------------------------------------------- /libexec/tradcpp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/libexec/tradcpp/utils.h -------------------------------------------------------------------------------- /mk/bsd.lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/mk/bsd.lib.mk -------------------------------------------------------------------------------- /mk/bsd.man.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/mk/bsd.man.mk -------------------------------------------------------------------------------- /mk/bsd.own.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/mk/bsd.own.mk -------------------------------------------------------------------------------- /mk/bsd.prog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/mk/bsd.prog.mk -------------------------------------------------------------------------------- /mk/bsd.regress.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/mk/bsd.regress.mk -------------------------------------------------------------------------------- /mk/bsd.subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/mk/bsd.subdir.mk -------------------------------------------------------------------------------- /regress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/Makefile -------------------------------------------------------------------------------- /regress/bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/Makefile -------------------------------------------------------------------------------- /regress/bin/cat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/cat/Makefile -------------------------------------------------------------------------------- /regress/bin/cat/cat_be.in: -------------------------------------------------------------------------------- 1 | free, 2 | 3 | functional 4 | 5 | and secure 6 | -------------------------------------------------------------------------------- /regress/bin/cat/cat_se.in: -------------------------------------------------------------------------------- 1 | 2 | Free, functional and secure 3 | 4 | -------------------------------------------------------------------------------- /regress/bin/cat/cat_se.out: -------------------------------------------------------------------------------- 1 | $ 2 | Free, functional and secure$ 3 | $ 4 | -------------------------------------------------------------------------------- /regress/bin/chmod/chmod.error: -------------------------------------------------------------------------------- 1 | chmod: invalid file mode: foo 2 | -------------------------------------------------------------------------------- /regress/bin/chmod/chmod_prepsymlink: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/bin/chmod/chown.error: -------------------------------------------------------------------------------- 1 | chown: invalid user: ‘__hopefully_not_existing_user’ 2 | -------------------------------------------------------------------------------- /regress/bin/ln/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/ln/Makefile -------------------------------------------------------------------------------- /regress/bin/md5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/md5/Makefile -------------------------------------------------------------------------------- /regress/bin/md5/pipe_test.md5: -------------------------------------------------------------------------------- 1 | hi 2 | 764efa883dda1e11db47671c4a3bbd9e 3 | -------------------------------------------------------------------------------- /regress/bin/pax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/Makefile -------------------------------------------------------------------------------- /regress/bin/pax/t1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t1.out -------------------------------------------------------------------------------- /regress/bin/pax/t1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t1.sh -------------------------------------------------------------------------------- /regress/bin/pax/t2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t2.out -------------------------------------------------------------------------------- /regress/bin/pax/t2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t2.sh -------------------------------------------------------------------------------- /regress/bin/pax/t3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t3.out -------------------------------------------------------------------------------- /regress/bin/pax/t3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t3.sh -------------------------------------------------------------------------------- /regress/bin/pax/t4.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t4.out -------------------------------------------------------------------------------- /regress/bin/pax/t4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t4.sh -------------------------------------------------------------------------------- /regress/bin/pax/t5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t5.sh -------------------------------------------------------------------------------- /regress/bin/pax/t6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/pax/t6.sh -------------------------------------------------------------------------------- /regress/bin/test/TEST.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/bin/test/TEST.sh -------------------------------------------------------------------------------- /regress/sbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/sbin/Makefile -------------------------------------------------------------------------------- /regress/usr.bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/Makefile -------------------------------------------------------------------------------- /regress/usr.bin/bc/t1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t1.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t19 -------------------------------------------------------------------------------- /regress/usr.bin/bc/t19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t19.c -------------------------------------------------------------------------------- /regress/usr.bin/bc/t2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t2.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t3.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t4.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t5.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t6.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t7.in: -------------------------------------------------------------------------------- 1 | a += 1 2 | b -= 2 3 | c *= 3 4 | d /= 4 5 | e ^= 5 6 | f %= 6 7 | -------------------------------------------------------------------------------- /regress/usr.bin/bc/t7.log: -------------------------------------------------------------------------------- 1 | la 1+sa 2 | lb 2-sb 3 | lc 3*sc 4 | ld 4/sd 5 | le 5^se 6 | lf 6%sf 7 | q -------------------------------------------------------------------------------- /regress/usr.bin/bc/t7.out: -------------------------------------------------------------------------------- 1 | la 1+sa 2 | lb 2-sb 3 | lc 3*sc 4 | ld 4/sd 5 | le 5^se 6 | lf 6%sf 7 | q -------------------------------------------------------------------------------- /regress/usr.bin/bc/t8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t8.in -------------------------------------------------------------------------------- /regress/usr.bin/bc/t9.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/bc/t9.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t1.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t10.out: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t17.out: -------------------------------------------------------------------------------- 1 | 1 2 | bar 3 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t18.out: -------------------------------------------------------------------------------- 1 | 0 2 | 99 3 | 100 4 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t2.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t2.out: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 7 4 | 365509 5 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t27.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t3.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t4.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t4.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t4.out: -------------------------------------------------------------------------------- 1 | Just another dc hacker! 2 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t5.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t6.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t6.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t6.out: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | -------------------------------------------------------------------------------- /regress/usr.bin/dc/t7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t7.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t8.in -------------------------------------------------------------------------------- /regress/usr.bin/dc/t9.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/dc/t9.in -------------------------------------------------------------------------------- /regress/usr.bin/diff/t1.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/diff/t1.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/diff/t10.1: -------------------------------------------------------------------------------- 1 | a line of text -------------------------------------------------------------------------------- /regress/usr.bin/diff/t10.2: -------------------------------------------------------------------------------- 1 | Another line of text -------------------------------------------------------------------------------- /regress/usr.bin/diff/t14.1: -------------------------------------------------------------------------------- 1 | 1 2 | 2 -------------------------------------------------------------------------------- /regress/usr.bin/diff/t14.2: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /regress/usr.bin/diff/t15.1: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 -------------------------------------------------------------------------------- /regress/usr.bin/diff/t15.2: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /regress/usr.bin/diff/t3.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/diff/t4.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t0.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t0.out: -------------------------------------------------------------------------------- 1 | t0.in: empty 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t1.out: -------------------------------------------------------------------------------- 1 | t1.in: System V Release 1 ar archive 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t15.out: -------------------------------------------------------------------------------- 1 | t15.in: POSIX tar archive 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t17.out: -------------------------------------------------------------------------------- 1 | t17.in: ASCII C program text 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t18.out: -------------------------------------------------------------------------------- 1 | t18.in: ELF 32-bit LSB executable, Intel 80386, version 1 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t19.out: -------------------------------------------------------------------------------- 1 | t19.in: ELF 32-bit MSB shared object, SPARC, version 1 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t2.out: -------------------------------------------------------------------------------- 1 | t2.in: ASCII cpio archive (pre-SVR4 or odc) 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t20.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t20.out: -------------------------------------------------------------------------------- 1 | t20.in: HTML document text 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t21.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t21.out: -------------------------------------------------------------------------------- 1 | t21.in: exported SGML document text 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t22.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t22.out: -------------------------------------------------------------------------------- 1 | t22.in: XML 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t3.out: -------------------------------------------------------------------------------- 1 | t3.in: current ar archive random library 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t30.in: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /regress/usr.bin/file/t30.out: -------------------------------------------------------------------------------- 1 | t30.in: OpenBSD big-endian object file 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t31.in: -------------------------------------------------------------------------------- 1 | {\rtf1foo 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t31.out: -------------------------------------------------------------------------------- 1 | t31.in: Rich Text Format data, version 1, unknown character set 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t32.in: -------------------------------------------------------------------------------- 1 | P6 2 | 1419 1001 3 | 255 4 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t32.out: -------------------------------------------------------------------------------- 1 | t32.in: Netpbm PPM "rawbits" image data 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t33.out: -------------------------------------------------------------------------------- 1 | t33.in: QDOS executable 'foobar' 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t4.in: -------------------------------------------------------------------------------- 1 | #! /bin/awk 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t4.out: -------------------------------------------------------------------------------- 1 | t4.in: awk script text executable 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t5.in: -------------------------------------------------------------------------------- 1 | #!/bin/awk 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t5.out: -------------------------------------------------------------------------------- 1 | t5.in: awk script text executable 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t6.in: -------------------------------------------------------------------------------- 1 | #! /bin/csh 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t6.out: -------------------------------------------------------------------------------- 1 | t6.in: C shell script text executable 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t7.in: -------------------------------------------------------------------------------- 1 | #!/bin/csh 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t7.out: -------------------------------------------------------------------------------- 1 | t7.in: C shell script text executable 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t8.in: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t8.out: -------------------------------------------------------------------------------- 1 | t8.in: Bourne shell script text executable 2 | -------------------------------------------------------------------------------- /regress/usr.bin/file/t9.out: -------------------------------------------------------------------------------- 1 | t9.in: compiled Java class data, version 49.0 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/grep/in -------------------------------------------------------------------------------- /regress/usr.bin/grep/t1.out: -------------------------------------------------------------------------------- 1 | dot.separated@words 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t17.in: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t17.out: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t19.in: -------------------------------------------------------------------------------- 1 | 2 | a 3 | aa 4 | a_ 5 | a+ 6 | +a 7 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t19.out: -------------------------------------------------------------------------------- 1 | aa 2 | a_ 3 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t21.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t25.in: -------------------------------------------------------------------------------- 1 | aaaabbbb 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t26.out: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t3.out: -------------------------------------------------------------------------------- 1 | Beginning of a line 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t4.out: -------------------------------------------------------------------------------- 1 | This line ends with EnD 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t5.out: -------------------------------------------------------------------------------- 1 | examples of special characters are [, $, ^, * 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t6.out: -------------------------------------------------------------------------------- 1 | dot.separated@words 2 | -------------------------------------------------------------------------------- /regress/usr.bin/grep/t7.out: -------------------------------------------------------------------------------- 1 | line 2 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.dbbd.out: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.dbbh.out: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.hbbh.out: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.rdhhh.out: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.rhdhh.out: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.wdl.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/jot/regress.wxn.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/tail/forward-blocks-rprint.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /regress/usr.bin/tail/forward-lines-rprint.out: -------------------------------------------------------------------------------- 1 | 511 2 | 510 3 | 509 4 | 508 5 | -------------------------------------------------------------------------------- /regress/usr.bin/tsort/hints1: -------------------------------------------------------------------------------- 1 | a 2 | b 3 | c 4 | d 5 | e 6 | -------------------------------------------------------------------------------- /regress/usr.bin/tsort/hints2: -------------------------------------------------------------------------------- 1 | f 2 | g 3 | h 4 | i 5 | j 6 | -------------------------------------------------------------------------------- /regress/usr.bin/tsort/pairs7: -------------------------------------------------------------------------------- 1 | b a 2 | -------------------------------------------------------------------------------- /regress/usr.bin/ul/ul.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/ul/ul.sh -------------------------------------------------------------------------------- /regress/usr.bin/wc/wc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/regress/usr.bin/wc/wc.sh -------------------------------------------------------------------------------- /sbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/Makefile -------------------------------------------------------------------------------- /sbin/Makefile.inc: -------------------------------------------------------------------------------- 1 | BINDIR?= ${sbindir} 2 | -------------------------------------------------------------------------------- /sbin/mknod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/mknod/Makefile -------------------------------------------------------------------------------- /sbin/mknod/mkfifo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/mknod/mkfifo.1 -------------------------------------------------------------------------------- /sbin/mknod/mknod.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/mknod/mknod.8 -------------------------------------------------------------------------------- /sbin/mknod/mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/mknod/mknod.c -------------------------------------------------------------------------------- /sbin/nologin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/nologin/Makefile -------------------------------------------------------------------------------- /sbin/nologin/nologin.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/nologin/nologin.8 -------------------------------------------------------------------------------- /sbin/nologin/nologin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/sbin/nologin/nologin.c -------------------------------------------------------------------------------- /share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/share/Makefile -------------------------------------------------------------------------------- /share/dict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/share/dict/Makefile -------------------------------------------------------------------------------- /share/dict/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/share/dict/README -------------------------------------------------------------------------------- /share/dict/propernames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/share/dict/propernames -------------------------------------------------------------------------------- /share/dict/web2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/share/dict/web2 -------------------------------------------------------------------------------- /share/dict/web2a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/share/dict/web2a -------------------------------------------------------------------------------- /usr.bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/Makefile -------------------------------------------------------------------------------- /usr.bin/Makefile.inc: -------------------------------------------------------------------------------- 1 | BINDIR?= ${bindir} 2 | -------------------------------------------------------------------------------- /usr.bin/apply/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/apply/Makefile -------------------------------------------------------------------------------- /usr.bin/apply/apply.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/apply/apply.1 -------------------------------------------------------------------------------- /usr.bin/apply/apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/apply/apply.c -------------------------------------------------------------------------------- /usr.bin/awk/FIXES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/FIXES -------------------------------------------------------------------------------- /usr.bin/awk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/Makefile -------------------------------------------------------------------------------- /usr.bin/awk/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/README -------------------------------------------------------------------------------- /usr.bin/awk/USD.doc/awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/USD.doc/awk -------------------------------------------------------------------------------- /usr.bin/awk/awk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/awk.1 -------------------------------------------------------------------------------- /usr.bin/awk/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/awk.h -------------------------------------------------------------------------------- /usr.bin/awk/awkgram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/awkgram.y -------------------------------------------------------------------------------- /usr.bin/awk/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/b.c -------------------------------------------------------------------------------- /usr.bin/awk/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/lex.c -------------------------------------------------------------------------------- /usr.bin/awk/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/lib.c -------------------------------------------------------------------------------- /usr.bin/awk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/main.c -------------------------------------------------------------------------------- /usr.bin/awk/maketab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/maketab.c -------------------------------------------------------------------------------- /usr.bin/awk/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/parse.c -------------------------------------------------------------------------------- /usr.bin/awk/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/proto.h -------------------------------------------------------------------------------- /usr.bin/awk/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/run.c -------------------------------------------------------------------------------- /usr.bin/awk/tran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/awk/tran.c -------------------------------------------------------------------------------- /usr.bin/banner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/banner/Makefile -------------------------------------------------------------------------------- /usr.bin/banner/banner.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/banner/banner.1 -------------------------------------------------------------------------------- /usr.bin/banner/banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/banner/banner.c -------------------------------------------------------------------------------- /usr.bin/banner/banner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/banner/banner.h -------------------------------------------------------------------------------- /usr.bin/banner/chset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/banner/chset.c -------------------------------------------------------------------------------- /usr.bin/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/Makefile -------------------------------------------------------------------------------- /usr.bin/bc/USD.doc/bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/USD.doc/bc -------------------------------------------------------------------------------- /usr.bin/bc/bc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/bc.1 -------------------------------------------------------------------------------- /usr.bin/bc/bc.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/bc.library -------------------------------------------------------------------------------- /usr.bin/bc/bc.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/bc.y -------------------------------------------------------------------------------- /usr.bin/bc/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/extern.h -------------------------------------------------------------------------------- /usr.bin/bc/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/pathnames.h -------------------------------------------------------------------------------- /usr.bin/bc/scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/scan.l -------------------------------------------------------------------------------- /usr.bin/bc/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/bc/tty.c -------------------------------------------------------------------------------- /usr.bin/biff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/biff/Makefile -------------------------------------------------------------------------------- /usr.bin/biff/biff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/biff/biff.1 -------------------------------------------------------------------------------- /usr.bin/biff/biff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/biff/biff.c -------------------------------------------------------------------------------- /usr.bin/cal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cal/Makefile -------------------------------------------------------------------------------- /usr.bin/cal/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cal/README -------------------------------------------------------------------------------- /usr.bin/cal/cal.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cal/cal.1 -------------------------------------------------------------------------------- /usr.bin/cal/cal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cal/cal.c -------------------------------------------------------------------------------- /usr.bin/calendar/day.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/calendar/day.c -------------------------------------------------------------------------------- /usr.bin/calendar/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/calendar/io.c -------------------------------------------------------------------------------- /usr.bin/cmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/Makefile -------------------------------------------------------------------------------- /usr.bin/cmp/cmp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/cmp.1 -------------------------------------------------------------------------------- /usr.bin/cmp/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/cmp.c -------------------------------------------------------------------------------- /usr.bin/cmp/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/extern.h -------------------------------------------------------------------------------- /usr.bin/cmp/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/misc.c -------------------------------------------------------------------------------- /usr.bin/cmp/regular.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/regular.c -------------------------------------------------------------------------------- /usr.bin/cmp/special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cmp/special.c -------------------------------------------------------------------------------- /usr.bin/col/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/col/Makefile -------------------------------------------------------------------------------- /usr.bin/col/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/col/README -------------------------------------------------------------------------------- /usr.bin/col/col.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/col/col.1 -------------------------------------------------------------------------------- /usr.bin/col/col.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/col/col.c -------------------------------------------------------------------------------- /usr.bin/colrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/colrm/Makefile -------------------------------------------------------------------------------- /usr.bin/colrm/colrm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/colrm/colrm.1 -------------------------------------------------------------------------------- /usr.bin/colrm/colrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/colrm/colrm.c -------------------------------------------------------------------------------- /usr.bin/column/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/column/Makefile -------------------------------------------------------------------------------- /usr.bin/column/column.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/column/column.1 -------------------------------------------------------------------------------- /usr.bin/column/column.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/column/column.c -------------------------------------------------------------------------------- /usr.bin/comm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/comm/Makefile -------------------------------------------------------------------------------- /usr.bin/comm/comm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/comm/comm.1 -------------------------------------------------------------------------------- /usr.bin/comm/comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/comm/comm.c -------------------------------------------------------------------------------- /usr.bin/compress/gzexe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/compress/gzexe -------------------------------------------------------------------------------- /usr.bin/compress/gzexe.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/compress/gzexe.1 -------------------------------------------------------------------------------- /usr.bin/compress/gzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/compress/gzip.1 -------------------------------------------------------------------------------- /usr.bin/compress/znew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/compress/znew -------------------------------------------------------------------------------- /usr.bin/ctags/C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/C.c -------------------------------------------------------------------------------- /usr.bin/ctags/ctags.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/ctags.1 -------------------------------------------------------------------------------- /usr.bin/ctags/ctags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/ctags.c -------------------------------------------------------------------------------- /usr.bin/ctags/ctags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/ctags.h -------------------------------------------------------------------------------- /usr.bin/ctags/lisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/lisp.c -------------------------------------------------------------------------------- /usr.bin/ctags/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/print.c -------------------------------------------------------------------------------- /usr.bin/ctags/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/tree.c -------------------------------------------------------------------------------- /usr.bin/ctags/yacc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ctags/yacc.c -------------------------------------------------------------------------------- /usr.bin/cu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/Makefile -------------------------------------------------------------------------------- /usr.bin/cu/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/command.c -------------------------------------------------------------------------------- /usr.bin/cu/cu.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/cu.1 -------------------------------------------------------------------------------- /usr.bin/cu/cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/cu.c -------------------------------------------------------------------------------- /usr.bin/cu/cu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/cu.h -------------------------------------------------------------------------------- /usr.bin/cu/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/error.c -------------------------------------------------------------------------------- /usr.bin/cu/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/input.c -------------------------------------------------------------------------------- /usr.bin/cu/xmodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cu/xmodem.c -------------------------------------------------------------------------------- /usr.bin/cut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cut/Makefile -------------------------------------------------------------------------------- /usr.bin/cut/cut.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cut/cut.1 -------------------------------------------------------------------------------- /usr.bin/cut/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/cut/cut.c -------------------------------------------------------------------------------- /usr.bin/dc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/Makefile -------------------------------------------------------------------------------- /usr.bin/dc/USD.doc/dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/USD.doc/dc -------------------------------------------------------------------------------- /usr.bin/dc/bcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/bcode.c -------------------------------------------------------------------------------- /usr.bin/dc/bcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/bcode.h -------------------------------------------------------------------------------- /usr.bin/dc/dc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/dc.1 -------------------------------------------------------------------------------- /usr.bin/dc/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/dc.c -------------------------------------------------------------------------------- /usr.bin/dc/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/extern.h -------------------------------------------------------------------------------- /usr.bin/dc/inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/inout.c -------------------------------------------------------------------------------- /usr.bin/dc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/main.c -------------------------------------------------------------------------------- /usr.bin/dc/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/mem.c -------------------------------------------------------------------------------- /usr.bin/dc/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/dc/stack.c -------------------------------------------------------------------------------- /usr.bin/diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/diff/Makefile -------------------------------------------------------------------------------- /usr.bin/diff/diff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/diff/diff.1 -------------------------------------------------------------------------------- /usr.bin/diff/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/diff/diff.c -------------------------------------------------------------------------------- /usr.bin/diff/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/diff/diff.h -------------------------------------------------------------------------------- /usr.bin/diff3/diff3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/diff3/diff3.1 -------------------------------------------------------------------------------- /usr.bin/du/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/du/Makefile -------------------------------------------------------------------------------- /usr.bin/du/du.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/du/du.1 -------------------------------------------------------------------------------- /usr.bin/du/du.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/du/du.c -------------------------------------------------------------------------------- /usr.bin/env/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/env/Makefile -------------------------------------------------------------------------------- /usr.bin/env/env.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/env/env.1 -------------------------------------------------------------------------------- /usr.bin/env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/env/env.c -------------------------------------------------------------------------------- /usr.bin/false/false.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/false/false.1 -------------------------------------------------------------------------------- /usr.bin/false/false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/false/false.c -------------------------------------------------------------------------------- /usr.bin/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/Makefile -------------------------------------------------------------------------------- /usr.bin/file/file.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/file.1 -------------------------------------------------------------------------------- /usr.bin/file/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/file.c -------------------------------------------------------------------------------- /usr.bin/file/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/file.h -------------------------------------------------------------------------------- /usr.bin/file/magic.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/magic.5 -------------------------------------------------------------------------------- /usr.bin/file/magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/magic.h -------------------------------------------------------------------------------- /usr.bin/file/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/file/text.c -------------------------------------------------------------------------------- /usr.bin/find/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/Makefile -------------------------------------------------------------------------------- /usr.bin/find/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/extern.h -------------------------------------------------------------------------------- /usr.bin/find/find.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/find.1 -------------------------------------------------------------------------------- /usr.bin/find/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/find.c -------------------------------------------------------------------------------- /usr.bin/find/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/find.h -------------------------------------------------------------------------------- /usr.bin/find/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/ls.c -------------------------------------------------------------------------------- /usr.bin/find/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/main.c -------------------------------------------------------------------------------- /usr.bin/find/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/misc.c -------------------------------------------------------------------------------- /usr.bin/find/option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/find/option.c -------------------------------------------------------------------------------- /usr.bin/fmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/fmt/Makefile -------------------------------------------------------------------------------- /usr.bin/fmt/fmt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/fmt/fmt.1 -------------------------------------------------------------------------------- /usr.bin/fmt/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/fmt/fmt.c -------------------------------------------------------------------------------- /usr.bin/fold/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/fold/Makefile -------------------------------------------------------------------------------- /usr.bin/fold/fold.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/fold/fold.1 -------------------------------------------------------------------------------- /usr.bin/fold/fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/fold/fold.c -------------------------------------------------------------------------------- /usr.bin/from/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/from/Makefile -------------------------------------------------------------------------------- /usr.bin/from/from.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/from/from.1 -------------------------------------------------------------------------------- /usr.bin/from/from.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/from/from.c -------------------------------------------------------------------------------- /usr.bin/ftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/Makefile -------------------------------------------------------------------------------- /usr.bin/ftp/cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/cmds.c -------------------------------------------------------------------------------- /usr.bin/ftp/cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/cmds.h -------------------------------------------------------------------------------- /usr.bin/ftp/cmdtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/cmdtab.c -------------------------------------------------------------------------------- /usr.bin/ftp/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/cookie.c -------------------------------------------------------------------------------- /usr.bin/ftp/domacro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/domacro.c -------------------------------------------------------------------------------- /usr.bin/ftp/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/extern.h -------------------------------------------------------------------------------- /usr.bin/ftp/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/fetch.c -------------------------------------------------------------------------------- /usr.bin/ftp/ftp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/ftp.1 -------------------------------------------------------------------------------- /usr.bin/ftp/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/ftp.c -------------------------------------------------------------------------------- /usr.bin/ftp/ftp_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/ftp_var.h -------------------------------------------------------------------------------- /usr.bin/ftp/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/list.c -------------------------------------------------------------------------------- /usr.bin/ftp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/main.c -------------------------------------------------------------------------------- /usr.bin/ftp/small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/small.c -------------------------------------------------------------------------------- /usr.bin/ftp/small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/small.h -------------------------------------------------------------------------------- /usr.bin/ftp/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ftp/util.c -------------------------------------------------------------------------------- /usr.bin/grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/Makefile -------------------------------------------------------------------------------- /usr.bin/grep/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/binary.c -------------------------------------------------------------------------------- /usr.bin/grep/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/file.c -------------------------------------------------------------------------------- /usr.bin/grep/grep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/grep.1 -------------------------------------------------------------------------------- /usr.bin/grep/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/grep.c -------------------------------------------------------------------------------- /usr.bin/grep/grep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/grep.h -------------------------------------------------------------------------------- /usr.bin/grep/mmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/mmfile.c -------------------------------------------------------------------------------- /usr.bin/grep/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/queue.c -------------------------------------------------------------------------------- /usr.bin/grep/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/grep/util.c -------------------------------------------------------------------------------- /usr.bin/head/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/head/Makefile -------------------------------------------------------------------------------- /usr.bin/head/head.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/head/head.1 -------------------------------------------------------------------------------- /usr.bin/head/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/head/head.c -------------------------------------------------------------------------------- /usr.bin/hexdump/od.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/hexdump/od.1 -------------------------------------------------------------------------------- /usr.bin/id/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/id/Makefile -------------------------------------------------------------------------------- /usr.bin/id/PORT_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/id/PORT_NOTES -------------------------------------------------------------------------------- /usr.bin/id/groups.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/id/groups.1 -------------------------------------------------------------------------------- /usr.bin/id/id.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/id/id.1 -------------------------------------------------------------------------------- /usr.bin/id/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/id/id.c -------------------------------------------------------------------------------- /usr.bin/id/whoami.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/id/whoami.1 -------------------------------------------------------------------------------- /usr.bin/indent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/indent/README -------------------------------------------------------------------------------- /usr.bin/indent/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/indent/args.c -------------------------------------------------------------------------------- /usr.bin/indent/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/indent/io.c -------------------------------------------------------------------------------- /usr.bin/indent/lexi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/indent/lexi.c -------------------------------------------------------------------------------- /usr.bin/join/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/join/Makefile -------------------------------------------------------------------------------- /usr.bin/join/join.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/join/join.1 -------------------------------------------------------------------------------- /usr.bin/join/join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/join/join.c -------------------------------------------------------------------------------- /usr.bin/jot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/jot/Makefile -------------------------------------------------------------------------------- /usr.bin/jot/jot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/jot/jot.1 -------------------------------------------------------------------------------- /usr.bin/jot/jot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/jot/jot.c -------------------------------------------------------------------------------- /usr.bin/lam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/lam/Makefile -------------------------------------------------------------------------------- /usr.bin/lam/lam.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/lam/lam.1 -------------------------------------------------------------------------------- /usr.bin/lam/lam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/lam/lam.c -------------------------------------------------------------------------------- /usr.bin/leave/leave.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/leave/leave.1 -------------------------------------------------------------------------------- /usr.bin/leave/leave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/leave/leave.c -------------------------------------------------------------------------------- /usr.bin/lndir/lndir.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/lndir/lndir.1 -------------------------------------------------------------------------------- /usr.bin/lndir/lndir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/lndir/lndir.c -------------------------------------------------------------------------------- /usr.bin/look/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/look/Makefile -------------------------------------------------------------------------------- /usr.bin/look/look.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/look/look.1 -------------------------------------------------------------------------------- /usr.bin/look/look.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/look/look.c -------------------------------------------------------------------------------- /usr.bin/mail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/Makefile -------------------------------------------------------------------------------- /usr.bin/mail/aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/aux.c -------------------------------------------------------------------------------- /usr.bin/mail/cmd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/cmd1.c -------------------------------------------------------------------------------- /usr.bin/mail/cmd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/cmd2.c -------------------------------------------------------------------------------- /usr.bin/mail/cmd3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/cmd3.c -------------------------------------------------------------------------------- /usr.bin/mail/cmdtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/cmdtab.c -------------------------------------------------------------------------------- /usr.bin/mail/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/def.h -------------------------------------------------------------------------------- /usr.bin/mail/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/edit.c -------------------------------------------------------------------------------- /usr.bin/mail/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/extern.h -------------------------------------------------------------------------------- /usr.bin/mail/fio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/fio.c -------------------------------------------------------------------------------- /usr.bin/mail/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/glob.h -------------------------------------------------------------------------------- /usr.bin/mail/head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/head.c -------------------------------------------------------------------------------- /usr.bin/mail/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/lex.c -------------------------------------------------------------------------------- /usr.bin/mail/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/list.c -------------------------------------------------------------------------------- /usr.bin/mail/mail.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/mail.1 -------------------------------------------------------------------------------- /usr.bin/mail/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/main.c -------------------------------------------------------------------------------- /usr.bin/mail/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/names.c -------------------------------------------------------------------------------- /usr.bin/mail/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/popen.c -------------------------------------------------------------------------------- /usr.bin/mail/quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/quit.c -------------------------------------------------------------------------------- /usr.bin/mail/rcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/rcv.h -------------------------------------------------------------------------------- /usr.bin/mail/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/send.c -------------------------------------------------------------------------------- /usr.bin/mail/temp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/temp.c -------------------------------------------------------------------------------- /usr.bin/mail/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/tty.c -------------------------------------------------------------------------------- /usr.bin/mail/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mail/vars.c -------------------------------------------------------------------------------- /usr.bin/mkdep/mkdep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/mkdep/mkdep.1 -------------------------------------------------------------------------------- /usr.bin/nice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nice/Makefile -------------------------------------------------------------------------------- /usr.bin/nice/nice.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nice/nice.1 -------------------------------------------------------------------------------- /usr.bin/nice/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nice/nice.c -------------------------------------------------------------------------------- /usr.bin/nl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nl/Makefile -------------------------------------------------------------------------------- /usr.bin/nl/nl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nl/nl.1 -------------------------------------------------------------------------------- /usr.bin/nl/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nl/nl.c -------------------------------------------------------------------------------- /usr.bin/nohup/nohup.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nohup/nohup.1 -------------------------------------------------------------------------------- /usr.bin/nohup/nohup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/nohup/nohup.c -------------------------------------------------------------------------------- /usr.bin/paste/paste.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/paste/paste.1 -------------------------------------------------------------------------------- /usr.bin/paste/paste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/paste/paste.c -------------------------------------------------------------------------------- /usr.bin/patch/ed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/ed.c -------------------------------------------------------------------------------- /usr.bin/patch/ed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/ed.h -------------------------------------------------------------------------------- /usr.bin/patch/inp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/inp.c -------------------------------------------------------------------------------- /usr.bin/patch/inp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/inp.h -------------------------------------------------------------------------------- /usr.bin/patch/patch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/patch.1 -------------------------------------------------------------------------------- /usr.bin/patch/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/patch.c -------------------------------------------------------------------------------- /usr.bin/patch/pch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/pch.c -------------------------------------------------------------------------------- /usr.bin/patch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/pch.h -------------------------------------------------------------------------------- /usr.bin/patch/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/util.c -------------------------------------------------------------------------------- /usr.bin/patch/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/patch/util.h -------------------------------------------------------------------------------- /usr.bin/pr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/pr/Makefile -------------------------------------------------------------------------------- /usr.bin/pr/egetopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/pr/egetopt.c -------------------------------------------------------------------------------- /usr.bin/pr/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/pr/extern.h -------------------------------------------------------------------------------- /usr.bin/pr/pr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/pr/pr.1 -------------------------------------------------------------------------------- /usr.bin/pr/pr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/pr/pr.c -------------------------------------------------------------------------------- /usr.bin/pr/pr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/pr/pr.h -------------------------------------------------------------------------------- /usr.bin/rcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/Makefile -------------------------------------------------------------------------------- /usr.bin/rcs/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/buf.c -------------------------------------------------------------------------------- /usr.bin/rcs/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/buf.h -------------------------------------------------------------------------------- /usr.bin/rcs/ci.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/ci.1 -------------------------------------------------------------------------------- /usr.bin/rcs/ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/ci.c -------------------------------------------------------------------------------- /usr.bin/rcs/co.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/co.1 -------------------------------------------------------------------------------- /usr.bin/rcs/co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/co.c -------------------------------------------------------------------------------- /usr.bin/rcs/date.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/date.y -------------------------------------------------------------------------------- /usr.bin/rcs/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/diff.c -------------------------------------------------------------------------------- /usr.bin/rcs/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/diff.h -------------------------------------------------------------------------------- /usr.bin/rcs/diff3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/diff3.c -------------------------------------------------------------------------------- /usr.bin/rcs/ident.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/ident.1 -------------------------------------------------------------------------------- /usr.bin/rcs/ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/ident.c -------------------------------------------------------------------------------- /usr.bin/rcs/merge.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/merge.1 -------------------------------------------------------------------------------- /usr.bin/rcs/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/merge.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcs.1 -------------------------------------------------------------------------------- /usr.bin/rcs/rcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcs.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcs.h -------------------------------------------------------------------------------- /usr.bin/rcs/rcsdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsdiff.1 -------------------------------------------------------------------------------- /usr.bin/rcs/rcsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsdiff.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcsnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsnum.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcsprog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsprog.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcsprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsprog.h -------------------------------------------------------------------------------- /usr.bin/rcs/rcstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcstime.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsutil.c -------------------------------------------------------------------------------- /usr.bin/rcs/rcsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rcsutil.h -------------------------------------------------------------------------------- /usr.bin/rcs/rlog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rlog.1 -------------------------------------------------------------------------------- /usr.bin/rcs/rlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/rlog.c -------------------------------------------------------------------------------- /usr.bin/rcs/xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/xmalloc.c -------------------------------------------------------------------------------- /usr.bin/rcs/xmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rcs/xmalloc.h -------------------------------------------------------------------------------- /usr.bin/rev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rev/Makefile -------------------------------------------------------------------------------- /usr.bin/rev/rev.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rev/rev.1 -------------------------------------------------------------------------------- /usr.bin/rev/rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rev/rev.c -------------------------------------------------------------------------------- /usr.bin/rs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rs/Makefile -------------------------------------------------------------------------------- /usr.bin/rs/rs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rs/rs.1 -------------------------------------------------------------------------------- /usr.bin/rs/rs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rs/rs.c -------------------------------------------------------------------------------- /usr.bin/rs/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/rs/utf8.c -------------------------------------------------------------------------------- /usr.bin/sdiff/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sdiff/edit.c -------------------------------------------------------------------------------- /usr.bin/sdiff/sdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sdiff/sdiff.1 -------------------------------------------------------------------------------- /usr.bin/sdiff/sdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sdiff/sdiff.c -------------------------------------------------------------------------------- /usr.bin/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/Makefile -------------------------------------------------------------------------------- /usr.bin/sed/POSIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/POSIX -------------------------------------------------------------------------------- /usr.bin/sed/compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/compile.c -------------------------------------------------------------------------------- /usr.bin/sed/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/defs.h -------------------------------------------------------------------------------- /usr.bin/sed/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/extern.h -------------------------------------------------------------------------------- /usr.bin/sed/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/main.c -------------------------------------------------------------------------------- /usr.bin/sed/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/misc.c -------------------------------------------------------------------------------- /usr.bin/sed/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/process.c -------------------------------------------------------------------------------- /usr.bin/sed/sed.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sed/sed.1 -------------------------------------------------------------------------------- /usr.bin/shar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/shar/Makefile -------------------------------------------------------------------------------- /usr.bin/shar/shar.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/shar/shar.1 -------------------------------------------------------------------------------- /usr.bin/shar/shar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/shar/shar.sh -------------------------------------------------------------------------------- /usr.bin/sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/Makefile -------------------------------------------------------------------------------- /usr.bin/sort/coll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/coll.c -------------------------------------------------------------------------------- /usr.bin/sort/coll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/coll.h -------------------------------------------------------------------------------- /usr.bin/sort/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/file.c -------------------------------------------------------------------------------- /usr.bin/sort/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/file.h -------------------------------------------------------------------------------- /usr.bin/sort/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/mem.c -------------------------------------------------------------------------------- /usr.bin/sort/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/mem.h -------------------------------------------------------------------------------- /usr.bin/sort/sort.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/sort.1 -------------------------------------------------------------------------------- /usr.bin/sort/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/sort.c -------------------------------------------------------------------------------- /usr.bin/sort/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/sort.h -------------------------------------------------------------------------------- /usr.bin/sort/vsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/vsort.c -------------------------------------------------------------------------------- /usr.bin/sort/vsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/sort/vsort.h -------------------------------------------------------------------------------- /usr.bin/spell/british: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/spell/british -------------------------------------------------------------------------------- /usr.bin/spell/look.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/spell/look.c -------------------------------------------------------------------------------- /usr.bin/spell/special.4bsd: -------------------------------------------------------------------------------- 1 | openbsd 2 | -------------------------------------------------------------------------------- /usr.bin/spell/spell.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/spell/spell.1 -------------------------------------------------------------------------------- /usr.bin/spell/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/spell/stop -------------------------------------------------------------------------------- /usr.bin/split/split.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/split/split.1 -------------------------------------------------------------------------------- /usr.bin/split/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/split/split.c -------------------------------------------------------------------------------- /usr.bin/stat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/stat/Makefile -------------------------------------------------------------------------------- /usr.bin/stat/stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/stat/stat.1 -------------------------------------------------------------------------------- /usr.bin/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/stat/stat.c -------------------------------------------------------------------------------- /usr.bin/tail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tail/Makefile -------------------------------------------------------------------------------- /usr.bin/tail/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tail/extern.h -------------------------------------------------------------------------------- /usr.bin/tail/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tail/misc.c -------------------------------------------------------------------------------- /usr.bin/tail/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tail/read.c -------------------------------------------------------------------------------- /usr.bin/tail/tail.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tail/tail.1 -------------------------------------------------------------------------------- /usr.bin/tail/tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tail/tail.c -------------------------------------------------------------------------------- /usr.bin/tee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tee/Makefile -------------------------------------------------------------------------------- /usr.bin/tee/tee.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tee/tee.1 -------------------------------------------------------------------------------- /usr.bin/tee/tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tee/tee.c -------------------------------------------------------------------------------- /usr.bin/telnet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/telnet/README -------------------------------------------------------------------------------- /usr.bin/telnet/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/telnet/main.c -------------------------------------------------------------------------------- /usr.bin/telnet/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/telnet/ring.c -------------------------------------------------------------------------------- /usr.bin/telnet/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/telnet/ring.h -------------------------------------------------------------------------------- /usr.bin/tftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tftp/Makefile -------------------------------------------------------------------------------- /usr.bin/tftp/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tftp/extern.h -------------------------------------------------------------------------------- /usr.bin/tftp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tftp/main.c -------------------------------------------------------------------------------- /usr.bin/tftp/tftp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tftp/tftp.1 -------------------------------------------------------------------------------- /usr.bin/tftp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tftp/tftp.c -------------------------------------------------------------------------------- /usr.bin/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/time/Makefile -------------------------------------------------------------------------------- /usr.bin/time/time.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/time/time.1 -------------------------------------------------------------------------------- /usr.bin/time/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/time/time.c -------------------------------------------------------------------------------- /usr.bin/touch/touch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/touch/touch.1 -------------------------------------------------------------------------------- /usr.bin/touch/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/touch/touch.c -------------------------------------------------------------------------------- /usr.bin/tr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tr/Makefile -------------------------------------------------------------------------------- /usr.bin/tr/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tr/extern.h -------------------------------------------------------------------------------- /usr.bin/tr/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tr/str.c -------------------------------------------------------------------------------- /usr.bin/tr/tr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tr/tr.1 -------------------------------------------------------------------------------- /usr.bin/tr/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tr/tr.c -------------------------------------------------------------------------------- /usr.bin/true/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/true/Makefile -------------------------------------------------------------------------------- /usr.bin/true/true.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/true/true.1 -------------------------------------------------------------------------------- /usr.bin/true/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/true/true.c -------------------------------------------------------------------------------- /usr.bin/tsort/tsort.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tsort/tsort.1 -------------------------------------------------------------------------------- /usr.bin/tsort/tsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tsort/tsort.c -------------------------------------------------------------------------------- /usr.bin/tty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tty/Makefile -------------------------------------------------------------------------------- /usr.bin/tty/tty.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tty/tty.1 -------------------------------------------------------------------------------- /usr.bin/tty/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/tty/tty.c -------------------------------------------------------------------------------- /usr.bin/ul/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ul/Makefile -------------------------------------------------------------------------------- /usr.bin/ul/ul.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ul/ul.1 -------------------------------------------------------------------------------- /usr.bin/ul/ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/ul/ul.c -------------------------------------------------------------------------------- /usr.bin/uname/uname.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/uname/uname.1 -------------------------------------------------------------------------------- /usr.bin/uname/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/uname/uname.c -------------------------------------------------------------------------------- /usr.bin/uniq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/uniq/Makefile -------------------------------------------------------------------------------- /usr.bin/uniq/uniq.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/uniq/uniq.1 -------------------------------------------------------------------------------- /usr.bin/uniq/uniq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/uniq/uniq.c -------------------------------------------------------------------------------- /usr.bin/units/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/units/README -------------------------------------------------------------------------------- /usr.bin/units/units.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/units/units.1 -------------------------------------------------------------------------------- /usr.bin/units/units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/units/units.c -------------------------------------------------------------------------------- /usr.bin/unvis/unvis.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/unvis/unvis.1 -------------------------------------------------------------------------------- /usr.bin/unvis/unvis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/unvis/unvis.c -------------------------------------------------------------------------------- /usr.bin/vis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/vis/Makefile -------------------------------------------------------------------------------- /usr.bin/vis/foldit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/vis/foldit.c -------------------------------------------------------------------------------- /usr.bin/vis/vis.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/vis/vis.1 -------------------------------------------------------------------------------- /usr.bin/vis/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/vis/vis.c -------------------------------------------------------------------------------- /usr.bin/wc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/wc/Makefile -------------------------------------------------------------------------------- /usr.bin/wc/wc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/wc/wc.1 -------------------------------------------------------------------------------- /usr.bin/wc/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/wc/wc.c -------------------------------------------------------------------------------- /usr.bin/what/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/what/Makefile -------------------------------------------------------------------------------- /usr.bin/what/what.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/what/what.1 -------------------------------------------------------------------------------- /usr.bin/what/what.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/what/what.c -------------------------------------------------------------------------------- /usr.bin/which/which.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/which/which.1 -------------------------------------------------------------------------------- /usr.bin/which/which.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/which/which.c -------------------------------------------------------------------------------- /usr.bin/whois/whois.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/whois/whois.1 -------------------------------------------------------------------------------- /usr.bin/whois/whois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/whois/whois.c -------------------------------------------------------------------------------- /usr.bin/xargs/xargs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/xargs/xargs.1 -------------------------------------------------------------------------------- /usr.bin/xargs/xargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/xargs/xargs.c -------------------------------------------------------------------------------- /usr.bin/xinstall/PORT_NOTES: -------------------------------------------------------------------------------- 1 | Does not support file flags (-f) 2 | -------------------------------------------------------------------------------- /usr.bin/yes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/yes/Makefile -------------------------------------------------------------------------------- /usr.bin/yes/yes.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/yes/yes.1 -------------------------------------------------------------------------------- /usr.bin/yes/yes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.bin/yes/yes.c -------------------------------------------------------------------------------- /usr.sbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.sbin/Makefile -------------------------------------------------------------------------------- /usr.sbin/Makefile.inc: -------------------------------------------------------------------------------- 1 | BINDIR?= ${sbindir} 2 | -------------------------------------------------------------------------------- /usr.sbin/mtree/PORT_NOTES: -------------------------------------------------------------------------------- 1 | No file flags support 2 | -------------------------------------------------------------------------------- /usr.sbin/mtree/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.sbin/mtree/crc.c -------------------------------------------------------------------------------- /usr.sbin/mtree/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.sbin/mtree/misc.c -------------------------------------------------------------------------------- /usr.sbin/mtree/spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.sbin/mtree/spec.c -------------------------------------------------------------------------------- /usr.sbin/rdate/ntp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duncaen/lobase/HEAD/usr.sbin/rdate/ntp.c --------------------------------------------------------------------------------