├── LICENSE ├── Makefile ├── README ├── TODO ├── arg.h ├── blkdiscard.8 ├── blkdiscard.c ├── chvt.1 ├── chvt.c ├── clear.1 ├── clear.c ├── config.def.h ├── config.mk ├── ctrlaltdel.8 ├── ctrlaltdel.c ├── df.1 ├── df.c ├── dmesg.1 ├── dmesg.c ├── eject.1 ├── eject.c ├── fallocate.1 ├── fallocate.c ├── free.1 ├── free.c ├── freeramdisk.8 ├── freeramdisk.c ├── fsfreeze.8 ├── fsfreeze.c ├── getty.8 ├── getty.c ├── halt.8 ├── halt.c ├── hwclock.8 ├── hwclock.c ├── id.1 ├── id.c ├── insmod.8 ├── insmod.c ├── killall5.8 ├── killall5.c ├── last.c ├── lastlog.8 ├── lastlog.c ├── libutil ├── agetcwd.c ├── agetline.c ├── apathmax.c ├── concat.c ├── ealloc.c ├── eprintf.c ├── estrtol.c ├── estrtoul.c ├── explicit_bzero.c ├── passwd.c ├── proc.c ├── putword.c ├── recurse.c ├── strlcat.c ├── strlcpy.c ├── strtonum.c └── tty.c ├── login.1 ├── login.c ├── lsmod.8 ├── lsmod.c ├── lsusb.8 ├── lsusb.c ├── mesg.1 ├── mesg.c ├── mkswap.8 ├── mkswap.c ├── mount.8 ├── mount.c ├── mountpoint.1 ├── mountpoint.c ├── nologin.8 ├── nologin.c ├── pagesize.1 ├── pagesize.c ├── passwd.1 ├── passwd.c ├── passwd.h ├── pidof.1 ├── pidof.c ├── pivot_root.8 ├── pivot_root.c ├── proc.h ├── ps.1 ├── ps.c ├── pwdx.1 ├── pwdx.c ├── queue.h ├── readahead.8 ├── readahead.c ├── reboot.h ├── respawn.1 ├── respawn.c ├── rmmod.8 ├── rmmod.c ├── rtc.h ├── stat.1 ├── stat.c ├── stty.c ├── su.1 ├── su.c ├── swaplabel.8 ├── swaplabel.c ├── swapoff.8 ├── swapoff.c ├── swapon.8 ├── swapon.c ├── switch_root.8 ├── switch_root.c ├── sysctl.8 ├── sysctl.c ├── text.h ├── truncate.1 ├── truncate.c ├── umount.8 ├── umount.c ├── unshare.1 ├── unshare.c ├── uptime.1 ├── uptime.c ├── util.h ├── vmstat.c ├── vtallow.1 ├── vtallow.c ├── watch.1 ├── watch.c ├── who.1 └── who.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/TODO -------------------------------------------------------------------------------- /arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/arg.h -------------------------------------------------------------------------------- /blkdiscard.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/blkdiscard.8 -------------------------------------------------------------------------------- /blkdiscard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/blkdiscard.c -------------------------------------------------------------------------------- /chvt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/chvt.1 -------------------------------------------------------------------------------- /chvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/chvt.c -------------------------------------------------------------------------------- /clear.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/clear.1 -------------------------------------------------------------------------------- /clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/clear.c -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/config.def.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/config.mk -------------------------------------------------------------------------------- /ctrlaltdel.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/ctrlaltdel.8 -------------------------------------------------------------------------------- /ctrlaltdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/ctrlaltdel.c -------------------------------------------------------------------------------- /df.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/df.1 -------------------------------------------------------------------------------- /df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/df.c -------------------------------------------------------------------------------- /dmesg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/dmesg.1 -------------------------------------------------------------------------------- /dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/dmesg.c -------------------------------------------------------------------------------- /eject.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/eject.1 -------------------------------------------------------------------------------- /eject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/eject.c -------------------------------------------------------------------------------- /fallocate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/fallocate.1 -------------------------------------------------------------------------------- /fallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/fallocate.c -------------------------------------------------------------------------------- /free.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/free.1 -------------------------------------------------------------------------------- /free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/free.c -------------------------------------------------------------------------------- /freeramdisk.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/freeramdisk.8 -------------------------------------------------------------------------------- /freeramdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/freeramdisk.c -------------------------------------------------------------------------------- /fsfreeze.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/fsfreeze.8 -------------------------------------------------------------------------------- /fsfreeze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/fsfreeze.c -------------------------------------------------------------------------------- /getty.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/getty.8 -------------------------------------------------------------------------------- /getty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/getty.c -------------------------------------------------------------------------------- /halt.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/halt.8 -------------------------------------------------------------------------------- /halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/halt.c -------------------------------------------------------------------------------- /hwclock.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/hwclock.8 -------------------------------------------------------------------------------- /hwclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/hwclock.c -------------------------------------------------------------------------------- /id.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/id.1 -------------------------------------------------------------------------------- /id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/id.c -------------------------------------------------------------------------------- /insmod.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/insmod.8 -------------------------------------------------------------------------------- /insmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/insmod.c -------------------------------------------------------------------------------- /killall5.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/killall5.8 -------------------------------------------------------------------------------- /killall5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/killall5.c -------------------------------------------------------------------------------- /last.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/last.c -------------------------------------------------------------------------------- /lastlog.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/lastlog.8 -------------------------------------------------------------------------------- /lastlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/lastlog.c -------------------------------------------------------------------------------- /libutil/agetcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/agetcwd.c -------------------------------------------------------------------------------- /libutil/agetline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/agetline.c -------------------------------------------------------------------------------- /libutil/apathmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/apathmax.c -------------------------------------------------------------------------------- /libutil/concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/concat.c -------------------------------------------------------------------------------- /libutil/ealloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/ealloc.c -------------------------------------------------------------------------------- /libutil/eprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/eprintf.c -------------------------------------------------------------------------------- /libutil/estrtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/estrtol.c -------------------------------------------------------------------------------- /libutil/estrtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/estrtoul.c -------------------------------------------------------------------------------- /libutil/explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/explicit_bzero.c -------------------------------------------------------------------------------- /libutil/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/passwd.c -------------------------------------------------------------------------------- /libutil/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/proc.c -------------------------------------------------------------------------------- /libutil/putword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/putword.c -------------------------------------------------------------------------------- /libutil/recurse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/recurse.c -------------------------------------------------------------------------------- /libutil/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/strlcat.c -------------------------------------------------------------------------------- /libutil/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/strlcpy.c -------------------------------------------------------------------------------- /libutil/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/strtonum.c -------------------------------------------------------------------------------- /libutil/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/libutil/tty.c -------------------------------------------------------------------------------- /login.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/login.1 -------------------------------------------------------------------------------- /login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/login.c -------------------------------------------------------------------------------- /lsmod.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/lsmod.8 -------------------------------------------------------------------------------- /lsmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/lsmod.c -------------------------------------------------------------------------------- /lsusb.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/lsusb.8 -------------------------------------------------------------------------------- /lsusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/lsusb.c -------------------------------------------------------------------------------- /mesg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mesg.1 -------------------------------------------------------------------------------- /mesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mesg.c -------------------------------------------------------------------------------- /mkswap.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mkswap.8 -------------------------------------------------------------------------------- /mkswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mkswap.c -------------------------------------------------------------------------------- /mount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mount.8 -------------------------------------------------------------------------------- /mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mount.c -------------------------------------------------------------------------------- /mountpoint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mountpoint.1 -------------------------------------------------------------------------------- /mountpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/mountpoint.c -------------------------------------------------------------------------------- /nologin.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/nologin.8 -------------------------------------------------------------------------------- /nologin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/nologin.c -------------------------------------------------------------------------------- /pagesize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pagesize.1 -------------------------------------------------------------------------------- /pagesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pagesize.c -------------------------------------------------------------------------------- /passwd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/passwd.1 -------------------------------------------------------------------------------- /passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/passwd.c -------------------------------------------------------------------------------- /passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/passwd.h -------------------------------------------------------------------------------- /pidof.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pidof.1 -------------------------------------------------------------------------------- /pidof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pidof.c -------------------------------------------------------------------------------- /pivot_root.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pivot_root.8 -------------------------------------------------------------------------------- /pivot_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pivot_root.c -------------------------------------------------------------------------------- /proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/proc.h -------------------------------------------------------------------------------- /ps.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/ps.1 -------------------------------------------------------------------------------- /ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/ps.c -------------------------------------------------------------------------------- /pwdx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pwdx.1 -------------------------------------------------------------------------------- /pwdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/pwdx.c -------------------------------------------------------------------------------- /queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/queue.h -------------------------------------------------------------------------------- /readahead.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/readahead.8 -------------------------------------------------------------------------------- /readahead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/readahead.c -------------------------------------------------------------------------------- /reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/reboot.h -------------------------------------------------------------------------------- /respawn.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/respawn.1 -------------------------------------------------------------------------------- /respawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/respawn.c -------------------------------------------------------------------------------- /rmmod.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/rmmod.8 -------------------------------------------------------------------------------- /rmmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/rmmod.c -------------------------------------------------------------------------------- /rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/rtc.h -------------------------------------------------------------------------------- /stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/stat.1 -------------------------------------------------------------------------------- /stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/stat.c -------------------------------------------------------------------------------- /stty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/stty.c -------------------------------------------------------------------------------- /su.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/su.1 -------------------------------------------------------------------------------- /su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/su.c -------------------------------------------------------------------------------- /swaplabel.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/swaplabel.8 -------------------------------------------------------------------------------- /swaplabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/swaplabel.c -------------------------------------------------------------------------------- /swapoff.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/swapoff.8 -------------------------------------------------------------------------------- /swapoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/swapoff.c -------------------------------------------------------------------------------- /swapon.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/swapon.8 -------------------------------------------------------------------------------- /swapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/swapon.c -------------------------------------------------------------------------------- /switch_root.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/switch_root.8 -------------------------------------------------------------------------------- /switch_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/switch_root.c -------------------------------------------------------------------------------- /sysctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/sysctl.8 -------------------------------------------------------------------------------- /sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/sysctl.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/text.h -------------------------------------------------------------------------------- /truncate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/truncate.1 -------------------------------------------------------------------------------- /truncate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/truncate.c -------------------------------------------------------------------------------- /umount.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/umount.8 -------------------------------------------------------------------------------- /umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/umount.c -------------------------------------------------------------------------------- /unshare.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/unshare.1 -------------------------------------------------------------------------------- /unshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/unshare.c -------------------------------------------------------------------------------- /uptime.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/uptime.1 -------------------------------------------------------------------------------- /uptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/uptime.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/util.h -------------------------------------------------------------------------------- /vmstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/vmstat.c -------------------------------------------------------------------------------- /vtallow.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/vtallow.1 -------------------------------------------------------------------------------- /vtallow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/vtallow.c -------------------------------------------------------------------------------- /watch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/watch.1 -------------------------------------------------------------------------------- /watch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/watch.c -------------------------------------------------------------------------------- /who.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/who.1 -------------------------------------------------------------------------------- /who.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/ubase/HEAD/who.c --------------------------------------------------------------------------------