├── .upstream_base_commits ├── APPLE_LICENSE ├── GCoreFrameworkTests.xctestplan ├── GCoreFrameworkTests └── GCoreFrameworkTests.m ├── ac ├── ac.8 ├── ac.c └── ac.plist.part ├── accton ├── accton.8 ├── accton.c └── accton.plist.part ├── arch ├── arch.1 ├── arch.c └── machine.1 ├── at ├── LEGAL ├── at.1 ├── at.c ├── at.h ├── at.plist.part ├── panic.c ├── panic.h ├── parsetime.c ├── parsetime.h ├── pathnames.h ├── perm.c ├── perm.h ├── privs.h └── updatemanpage.sh ├── atrun ├── atrun.8 ├── atrun.c ├── atrun.entitlements ├── atrun.plist.part ├── com.apple.atrun.plist ├── gloadavg.c └── gloadavg.h ├── base.xcconfig ├── chkpasswd ├── chkpasswd.8 ├── chkpasswd.pam ├── file_passwd.c ├── nis_passwd.c ├── od_passwd.c ├── pam_passwd.c ├── passwd.c ├── passwd.h ├── stringops.c └── stringops.h ├── chpass ├── chpass.1 ├── chpass.c ├── chpass.h ├── chpass.plist.part ├── edit.c ├── field.c ├── open_directory.c ├── open_directory.h ├── table.c └── util.c ├── cpuctl ├── cpuctl.8 └── cpuctl.c ├── dmesg ├── dmesg.8 └── dmesg.c ├── dynamic_pager ├── com.apple.dynamic_pager.plist ├── dynamic_pager.8 ├── dynamic_pager.c ├── entitlements.plist └── generate_plist.sh ├── fs_usage ├── entitlements.plist ├── fs_usage.1 └── fs_usage.c ├── gcore ├── GCore.h ├── GCoreFramework.xcconfig ├── corefile.c ├── corefile.h ├── gcore-entitlements.plist ├── gcore-internal.1 ├── gcore.1 ├── gcore_framework.m ├── main.c ├── note_addrable_bits.h ├── note_all_image_infos.h ├── note_process_metadata.h ├── notes.c ├── notes.h ├── options.h ├── portable_region_infos_t.h ├── portable_task_crash_info_t.h ├── region.h ├── sparse.c ├── sparse.h ├── threads.c ├── threads.h ├── utils.c ├── utils.h ├── vanilla.c ├── vanilla.h ├── vm.c └── vm.h ├── getconf ├── confstr.gperf ├── fake-gperf.awk ├── getconf.1 ├── getconf.c ├── getconf.h ├── getconf.plist.part ├── limits.gperf ├── pathconf.gperf ├── progenv.gperf ├── sysconf.gperf ├── tests │ ├── arch_type.c │ └── getconf_test.sh └── unsigned_limits.gperf ├── getty ├── chat.c ├── com.apple.getty.internal.plist ├── com.apple.getty.plist ├── com.apple.serialdebugconsole.plist ├── extern.h ├── generate_plist.sh ├── getty.8 ├── getty.plist.part ├── gettytab.5 ├── gettytab.h ├── init.c ├── main.c ├── pathnames.h ├── subr.c └── ttys.5 ├── hostinfo ├── hostinfo.8 └── hostinfo.c ├── iosim ├── iosim.1 └── iosim.c ├── iostat ├── iostat.8 └── iostat.c ├── kpgo └── kpgo.c ├── latency ├── latency.1 └── latency.c ├── login ├── login.1 ├── login.c ├── login.entitlements ├── login.h ├── login.plist.part ├── login_audit.c ├── pam.d │ ├── login │ └── login.term └── pathnames.h ├── lskq ├── common.h ├── lskq.1 └── lskq.c ├── lsmp ├── common.h ├── entitlements.plist ├── json.h ├── lsmp.1 ├── lsmp.c ├── port_details.c └── task_details.c ├── ltop ├── ltop.1 └── ltop.c ├── mean └── mean.c ├── memory_pressure ├── memory_pressure.1 └── memory_pressure.c ├── mkfile ├── mkfile.8 └── mkfile.c ├── mslutil ├── mslutil.1 └── mslutil.c ├── newgrp ├── newgrp.1 ├── newgrp.c └── newgrp.plist.part ├── nologin ├── nologin.5 ├── nologin.8 ├── nologin.c └── nologin.plist.part ├── nvram ├── entitlements.plist ├── nvram.8 └── nvram.c ├── pagesize ├── pagesize.1 ├── pagesize.plist.part └── pagesize.sh ├── passwd ├── file_passwd.c ├── nis_passwd.c ├── od_passwd.c ├── pam_passwd.c ├── passwd.1 ├── passwd.c ├── passwd.entitlements ├── passwd.h └── passwd.pam ├── proc_uuid_policy ├── proc_uuid_policy.1 └── proc_uuid_policy.c ├── purge ├── purge.8 └── purge.c ├── pwd_mkdb ├── pw_scan.c ├── pw_scan.h ├── pwd_mkdb.8 ├── pwd_mkdb.c ├── pwd_mkdb.plist.part └── tests │ └── pwd_mkdb_test.sh ├── reboot ├── kextmanager.defs ├── reboot.8 ├── reboot.c └── reboot.plist.part ├── sa ├── db.c ├── extern.h ├── main.c ├── pathnames.h ├── pdb.c ├── sa.8 ├── sa.plist.part └── usrdb.c ├── sc_usage ├── sc_usage.1 └── sc_usage.c ├── shutdown ├── kextmanager.defs ├── pathnames.h ├── shutdown.8 ├── shutdown.c └── shutdown.plist.part ├── stackshot ├── entitlements.plist └── stackshot.c ├── sync ├── sync.8 ├── sync.c └── sync.plist.part ├── sysctl ├── sysctl.8 ├── sysctl.c ├── sysctl.conf.5 ├── sysctl.plist.part └── tests │ └── sysctl_test.sh ├── system_cmds.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── All_Bridge.xcscheme │ ├── All_MacOSX.xcscheme │ └── All_iOS.xcscheme ├── taskpolicy ├── taskpolicy-entitlements.plist ├── taskpolicy.8 └── taskpolicy.c ├── tests └── system_cmds.plist.in ├── vifs ├── vifs.8 └── vifs.c ├── vipw ├── pw_util.c ├── pw_util.h ├── vipw.8 ├── vipw.c └── vipw.plist.part ├── vm_purgeable_stat ├── entitlements.plist ├── vm_purgeable_stat.1 └── vm_purgeable_stat.c ├── vm_stat ├── vm_stat.1 └── vm_stat.c ├── wait4path ├── wait4path.1 ├── wait4path.c └── wait4path.version ├── wordexp-helper └── wordexp-helper.c ├── xcconfigs ├── base.xcconfig ├── development.xcconfig ├── executable.xcconfig └── wait4path.xcconfig ├── xcodescripts └── install-test-files.sh ├── xscripts ├── darwinversion.sh └── install-opensource.sh ├── zdump ├── zdump.8 ├── zdump.c └── zdump.plist.part ├── zic ├── Makefile.zoneinfo.dist ├── ZIC_HACK ├── build_zichost.sh ├── generate_zoneinfo.sh ├── install_zoneinfo.sh ├── private.h ├── tzconfig.h ├── tzfile.h ├── version.h ├── zic.8 ├── zic.c └── zic.plist.part ├── zlog ├── SymbolicationHelper.c ├── SymbolicationHelper.h ├── entitlements.plist ├── zlog.1 └── zlog.c └── zprint ├── entitlements.plist ├── test_zprint.lua ├── zprint.1 ├── zprint.c └── zprint.lua /.upstream_base_commits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/.upstream_base_commits -------------------------------------------------------------------------------- /APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/APPLE_LICENSE -------------------------------------------------------------------------------- /GCoreFrameworkTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/GCoreFrameworkTests.xctestplan -------------------------------------------------------------------------------- /GCoreFrameworkTests/GCoreFrameworkTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/GCoreFrameworkTests/GCoreFrameworkTests.m -------------------------------------------------------------------------------- /ac/ac.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/ac/ac.8 -------------------------------------------------------------------------------- /ac/ac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/ac/ac.c -------------------------------------------------------------------------------- /ac/ac.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/ac/ac.plist.part -------------------------------------------------------------------------------- /accton/accton.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/accton/accton.8 -------------------------------------------------------------------------------- /accton/accton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/accton/accton.c -------------------------------------------------------------------------------- /accton/accton.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/accton/accton.plist.part -------------------------------------------------------------------------------- /arch/arch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/arch/arch.1 -------------------------------------------------------------------------------- /arch/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/arch/arch.c -------------------------------------------------------------------------------- /arch/machine.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/arch/machine.1 -------------------------------------------------------------------------------- /at/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/LEGAL -------------------------------------------------------------------------------- /at/at.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/at.1 -------------------------------------------------------------------------------- /at/at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/at.c -------------------------------------------------------------------------------- /at/at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/at.h -------------------------------------------------------------------------------- /at/at.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/at.plist.part -------------------------------------------------------------------------------- /at/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/panic.c -------------------------------------------------------------------------------- /at/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/panic.h -------------------------------------------------------------------------------- /at/parsetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/parsetime.c -------------------------------------------------------------------------------- /at/parsetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/parsetime.h -------------------------------------------------------------------------------- /at/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/pathnames.h -------------------------------------------------------------------------------- /at/perm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/perm.c -------------------------------------------------------------------------------- /at/perm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/perm.h -------------------------------------------------------------------------------- /at/privs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/privs.h -------------------------------------------------------------------------------- /at/updatemanpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/at/updatemanpage.sh -------------------------------------------------------------------------------- /atrun/atrun.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/atrun.8 -------------------------------------------------------------------------------- /atrun/atrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/atrun.c -------------------------------------------------------------------------------- /atrun/atrun.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/atrun.entitlements -------------------------------------------------------------------------------- /atrun/atrun.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/atrun.plist.part -------------------------------------------------------------------------------- /atrun/com.apple.atrun.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/com.apple.atrun.plist -------------------------------------------------------------------------------- /atrun/gloadavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/gloadavg.c -------------------------------------------------------------------------------- /atrun/gloadavg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/atrun/gloadavg.h -------------------------------------------------------------------------------- /base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/base.xcconfig -------------------------------------------------------------------------------- /chkpasswd/chkpasswd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/chkpasswd.8 -------------------------------------------------------------------------------- /chkpasswd/chkpasswd.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/chkpasswd.pam -------------------------------------------------------------------------------- /chkpasswd/file_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/file_passwd.c -------------------------------------------------------------------------------- /chkpasswd/nis_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/nis_passwd.c -------------------------------------------------------------------------------- /chkpasswd/od_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/od_passwd.c -------------------------------------------------------------------------------- /chkpasswd/pam_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/pam_passwd.c -------------------------------------------------------------------------------- /chkpasswd/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/passwd.c -------------------------------------------------------------------------------- /chkpasswd/passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/passwd.h -------------------------------------------------------------------------------- /chkpasswd/stringops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/stringops.c -------------------------------------------------------------------------------- /chkpasswd/stringops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chkpasswd/stringops.h -------------------------------------------------------------------------------- /chpass/chpass.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/chpass.1 -------------------------------------------------------------------------------- /chpass/chpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/chpass.c -------------------------------------------------------------------------------- /chpass/chpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/chpass.h -------------------------------------------------------------------------------- /chpass/chpass.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/chpass.plist.part -------------------------------------------------------------------------------- /chpass/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/edit.c -------------------------------------------------------------------------------- /chpass/field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/field.c -------------------------------------------------------------------------------- /chpass/open_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/open_directory.c -------------------------------------------------------------------------------- /chpass/open_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/open_directory.h -------------------------------------------------------------------------------- /chpass/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/table.c -------------------------------------------------------------------------------- /chpass/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/chpass/util.c -------------------------------------------------------------------------------- /cpuctl/cpuctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/cpuctl/cpuctl.8 -------------------------------------------------------------------------------- /cpuctl/cpuctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/cpuctl/cpuctl.c -------------------------------------------------------------------------------- /dmesg/dmesg.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dmesg/dmesg.8 -------------------------------------------------------------------------------- /dmesg/dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dmesg/dmesg.c -------------------------------------------------------------------------------- /dynamic_pager/com.apple.dynamic_pager.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dynamic_pager/com.apple.dynamic_pager.plist -------------------------------------------------------------------------------- /dynamic_pager/dynamic_pager.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dynamic_pager/dynamic_pager.8 -------------------------------------------------------------------------------- /dynamic_pager/dynamic_pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dynamic_pager/dynamic_pager.c -------------------------------------------------------------------------------- /dynamic_pager/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dynamic_pager/entitlements.plist -------------------------------------------------------------------------------- /dynamic_pager/generate_plist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/dynamic_pager/generate_plist.sh -------------------------------------------------------------------------------- /fs_usage/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/fs_usage/entitlements.plist -------------------------------------------------------------------------------- /fs_usage/fs_usage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/fs_usage/fs_usage.1 -------------------------------------------------------------------------------- /fs_usage/fs_usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/fs_usage/fs_usage.c -------------------------------------------------------------------------------- /gcore/GCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/GCore.h -------------------------------------------------------------------------------- /gcore/GCoreFramework.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/GCoreFramework.xcconfig -------------------------------------------------------------------------------- /gcore/corefile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/corefile.c -------------------------------------------------------------------------------- /gcore/corefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/corefile.h -------------------------------------------------------------------------------- /gcore/gcore-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/gcore-entitlements.plist -------------------------------------------------------------------------------- /gcore/gcore-internal.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/gcore-internal.1 -------------------------------------------------------------------------------- /gcore/gcore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/gcore.1 -------------------------------------------------------------------------------- /gcore/gcore_framework.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/gcore_framework.m -------------------------------------------------------------------------------- /gcore/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/main.c -------------------------------------------------------------------------------- /gcore/note_addrable_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/note_addrable_bits.h -------------------------------------------------------------------------------- /gcore/note_all_image_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/note_all_image_infos.h -------------------------------------------------------------------------------- /gcore/note_process_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/note_process_metadata.h -------------------------------------------------------------------------------- /gcore/notes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/notes.c -------------------------------------------------------------------------------- /gcore/notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/notes.h -------------------------------------------------------------------------------- /gcore/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/options.h -------------------------------------------------------------------------------- /gcore/portable_region_infos_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/portable_region_infos_t.h -------------------------------------------------------------------------------- /gcore/portable_task_crash_info_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/portable_task_crash_info_t.h -------------------------------------------------------------------------------- /gcore/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/region.h -------------------------------------------------------------------------------- /gcore/sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/sparse.c -------------------------------------------------------------------------------- /gcore/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/sparse.h -------------------------------------------------------------------------------- /gcore/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/threads.c -------------------------------------------------------------------------------- /gcore/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/threads.h -------------------------------------------------------------------------------- /gcore/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/utils.c -------------------------------------------------------------------------------- /gcore/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/utils.h -------------------------------------------------------------------------------- /gcore/vanilla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/vanilla.c -------------------------------------------------------------------------------- /gcore/vanilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/vanilla.h -------------------------------------------------------------------------------- /gcore/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/vm.c -------------------------------------------------------------------------------- /gcore/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/gcore/vm.h -------------------------------------------------------------------------------- /getconf/confstr.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/confstr.gperf -------------------------------------------------------------------------------- /getconf/fake-gperf.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/fake-gperf.awk -------------------------------------------------------------------------------- /getconf/getconf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/getconf.1 -------------------------------------------------------------------------------- /getconf/getconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/getconf.c -------------------------------------------------------------------------------- /getconf/getconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/getconf.h -------------------------------------------------------------------------------- /getconf/getconf.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/getconf.plist.part -------------------------------------------------------------------------------- /getconf/limits.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/limits.gperf -------------------------------------------------------------------------------- /getconf/pathconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/pathconf.gperf -------------------------------------------------------------------------------- /getconf/progenv.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/progenv.gperf -------------------------------------------------------------------------------- /getconf/sysconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/sysconf.gperf -------------------------------------------------------------------------------- /getconf/tests/arch_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/tests/arch_type.c -------------------------------------------------------------------------------- /getconf/tests/getconf_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/tests/getconf_test.sh -------------------------------------------------------------------------------- /getconf/unsigned_limits.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getconf/unsigned_limits.gperf -------------------------------------------------------------------------------- /getty/chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/chat.c -------------------------------------------------------------------------------- /getty/com.apple.getty.internal.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/com.apple.getty.internal.plist -------------------------------------------------------------------------------- /getty/com.apple.getty.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/com.apple.getty.plist -------------------------------------------------------------------------------- /getty/com.apple.serialdebugconsole.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/com.apple.serialdebugconsole.plist -------------------------------------------------------------------------------- /getty/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/extern.h -------------------------------------------------------------------------------- /getty/generate_plist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/generate_plist.sh -------------------------------------------------------------------------------- /getty/getty.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/getty.8 -------------------------------------------------------------------------------- /getty/getty.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/getty.plist.part -------------------------------------------------------------------------------- /getty/gettytab.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/gettytab.5 -------------------------------------------------------------------------------- /getty/gettytab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/gettytab.h -------------------------------------------------------------------------------- /getty/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/init.c -------------------------------------------------------------------------------- /getty/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/main.c -------------------------------------------------------------------------------- /getty/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/pathnames.h -------------------------------------------------------------------------------- /getty/subr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/subr.c -------------------------------------------------------------------------------- /getty/ttys.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/getty/ttys.5 -------------------------------------------------------------------------------- /hostinfo/hostinfo.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/hostinfo/hostinfo.8 -------------------------------------------------------------------------------- /hostinfo/hostinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/hostinfo/hostinfo.c -------------------------------------------------------------------------------- /iosim/iosim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/iosim/iosim.1 -------------------------------------------------------------------------------- /iosim/iosim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/iosim/iosim.c -------------------------------------------------------------------------------- /iostat/iostat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/iostat/iostat.8 -------------------------------------------------------------------------------- /iostat/iostat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/iostat/iostat.c -------------------------------------------------------------------------------- /kpgo/kpgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/kpgo/kpgo.c -------------------------------------------------------------------------------- /latency/latency.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/latency/latency.1 -------------------------------------------------------------------------------- /latency/latency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/latency/latency.c -------------------------------------------------------------------------------- /login/login.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/login.1 -------------------------------------------------------------------------------- /login/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/login.c -------------------------------------------------------------------------------- /login/login.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/login.entitlements -------------------------------------------------------------------------------- /login/login.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/login.h -------------------------------------------------------------------------------- /login/login.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/login.plist.part -------------------------------------------------------------------------------- /login/login_audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/login_audit.c -------------------------------------------------------------------------------- /login/pam.d/login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/pam.d/login -------------------------------------------------------------------------------- /login/pam.d/login.term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/pam.d/login.term -------------------------------------------------------------------------------- /login/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/login/pathnames.h -------------------------------------------------------------------------------- /lskq/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lskq/common.h -------------------------------------------------------------------------------- /lskq/lskq.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lskq/lskq.1 -------------------------------------------------------------------------------- /lskq/lskq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lskq/lskq.c -------------------------------------------------------------------------------- /lsmp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/common.h -------------------------------------------------------------------------------- /lsmp/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/entitlements.plist -------------------------------------------------------------------------------- /lsmp/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/json.h -------------------------------------------------------------------------------- /lsmp/lsmp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/lsmp.1 -------------------------------------------------------------------------------- /lsmp/lsmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/lsmp.c -------------------------------------------------------------------------------- /lsmp/port_details.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/port_details.c -------------------------------------------------------------------------------- /lsmp/task_details.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/lsmp/task_details.c -------------------------------------------------------------------------------- /ltop/ltop.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/ltop/ltop.1 -------------------------------------------------------------------------------- /ltop/ltop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/ltop/ltop.c -------------------------------------------------------------------------------- /mean/mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/mean/mean.c -------------------------------------------------------------------------------- /memory_pressure/memory_pressure.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/memory_pressure/memory_pressure.1 -------------------------------------------------------------------------------- /memory_pressure/memory_pressure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/memory_pressure/memory_pressure.c -------------------------------------------------------------------------------- /mkfile/mkfile.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/mkfile/mkfile.8 -------------------------------------------------------------------------------- /mkfile/mkfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/mkfile/mkfile.c -------------------------------------------------------------------------------- /mslutil/mslutil.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/mslutil/mslutil.1 -------------------------------------------------------------------------------- /mslutil/mslutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/mslutil/mslutil.c -------------------------------------------------------------------------------- /newgrp/newgrp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/newgrp/newgrp.1 -------------------------------------------------------------------------------- /newgrp/newgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/newgrp/newgrp.c -------------------------------------------------------------------------------- /newgrp/newgrp.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/newgrp/newgrp.plist.part -------------------------------------------------------------------------------- /nologin/nologin.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nologin/nologin.5 -------------------------------------------------------------------------------- /nologin/nologin.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nologin/nologin.8 -------------------------------------------------------------------------------- /nologin/nologin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nologin/nologin.c -------------------------------------------------------------------------------- /nologin/nologin.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nologin/nologin.plist.part -------------------------------------------------------------------------------- /nvram/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nvram/entitlements.plist -------------------------------------------------------------------------------- /nvram/nvram.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nvram/nvram.8 -------------------------------------------------------------------------------- /nvram/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/nvram/nvram.c -------------------------------------------------------------------------------- /pagesize/pagesize.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pagesize/pagesize.1 -------------------------------------------------------------------------------- /pagesize/pagesize.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pagesize/pagesize.plist.part -------------------------------------------------------------------------------- /pagesize/pagesize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pagesize/pagesize.sh -------------------------------------------------------------------------------- /passwd/file_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/file_passwd.c -------------------------------------------------------------------------------- /passwd/nis_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/nis_passwd.c -------------------------------------------------------------------------------- /passwd/od_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/od_passwd.c -------------------------------------------------------------------------------- /passwd/pam_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/pam_passwd.c -------------------------------------------------------------------------------- /passwd/passwd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/passwd.1 -------------------------------------------------------------------------------- /passwd/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/passwd.c -------------------------------------------------------------------------------- /passwd/passwd.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/passwd.entitlements -------------------------------------------------------------------------------- /passwd/passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/passwd.h -------------------------------------------------------------------------------- /passwd/passwd.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/passwd/passwd.pam -------------------------------------------------------------------------------- /proc_uuid_policy/proc_uuid_policy.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/proc_uuid_policy/proc_uuid_policy.1 -------------------------------------------------------------------------------- /proc_uuid_policy/proc_uuid_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/proc_uuid_policy/proc_uuid_policy.c -------------------------------------------------------------------------------- /purge/purge.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/purge/purge.8 -------------------------------------------------------------------------------- /purge/purge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/purge/purge.c -------------------------------------------------------------------------------- /pwd_mkdb/pw_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pwd_mkdb/pw_scan.c -------------------------------------------------------------------------------- /pwd_mkdb/pw_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pwd_mkdb/pw_scan.h -------------------------------------------------------------------------------- /pwd_mkdb/pwd_mkdb.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pwd_mkdb/pwd_mkdb.8 -------------------------------------------------------------------------------- /pwd_mkdb/pwd_mkdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pwd_mkdb/pwd_mkdb.c -------------------------------------------------------------------------------- /pwd_mkdb/pwd_mkdb.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pwd_mkdb/pwd_mkdb.plist.part -------------------------------------------------------------------------------- /pwd_mkdb/tests/pwd_mkdb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/pwd_mkdb/tests/pwd_mkdb_test.sh -------------------------------------------------------------------------------- /reboot/kextmanager.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/reboot/kextmanager.defs -------------------------------------------------------------------------------- /reboot/reboot.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/reboot/reboot.8 -------------------------------------------------------------------------------- /reboot/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/reboot/reboot.c -------------------------------------------------------------------------------- /reboot/reboot.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/reboot/reboot.plist.part -------------------------------------------------------------------------------- /sa/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/db.c -------------------------------------------------------------------------------- /sa/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/extern.h -------------------------------------------------------------------------------- /sa/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/main.c -------------------------------------------------------------------------------- /sa/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/pathnames.h -------------------------------------------------------------------------------- /sa/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/pdb.c -------------------------------------------------------------------------------- /sa/sa.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/sa.8 -------------------------------------------------------------------------------- /sa/sa.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/sa.plist.part -------------------------------------------------------------------------------- /sa/usrdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sa/usrdb.c -------------------------------------------------------------------------------- /sc_usage/sc_usage.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sc_usage/sc_usage.1 -------------------------------------------------------------------------------- /sc_usage/sc_usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sc_usage/sc_usage.c -------------------------------------------------------------------------------- /shutdown/kextmanager.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/shutdown/kextmanager.defs -------------------------------------------------------------------------------- /shutdown/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/shutdown/pathnames.h -------------------------------------------------------------------------------- /shutdown/shutdown.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/shutdown/shutdown.8 -------------------------------------------------------------------------------- /shutdown/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/shutdown/shutdown.c -------------------------------------------------------------------------------- /shutdown/shutdown.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/shutdown/shutdown.plist.part -------------------------------------------------------------------------------- /stackshot/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/stackshot/entitlements.plist -------------------------------------------------------------------------------- /stackshot/stackshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/stackshot/stackshot.c -------------------------------------------------------------------------------- /sync/sync.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sync/sync.8 -------------------------------------------------------------------------------- /sync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sync/sync.c -------------------------------------------------------------------------------- /sync/sync.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sync/sync.plist.part -------------------------------------------------------------------------------- /sysctl/sysctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sysctl/sysctl.8 -------------------------------------------------------------------------------- /sysctl/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sysctl/sysctl.c -------------------------------------------------------------------------------- /sysctl/sysctl.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sysctl/sysctl.conf.5 -------------------------------------------------------------------------------- /sysctl/sysctl.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sysctl/sysctl.plist.part -------------------------------------------------------------------------------- /sysctl/tests/sysctl_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/sysctl/tests/sysctl_test.sh -------------------------------------------------------------------------------- /system_cmds.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/system_cmds.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /system_cmds.xcodeproj/xcshareddata/xcschemes/All_Bridge.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/system_cmds.xcodeproj/xcshareddata/xcschemes/All_Bridge.xcscheme -------------------------------------------------------------------------------- /system_cmds.xcodeproj/xcshareddata/xcschemes/All_MacOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/system_cmds.xcodeproj/xcshareddata/xcschemes/All_MacOSX.xcscheme -------------------------------------------------------------------------------- /system_cmds.xcodeproj/xcshareddata/xcschemes/All_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/system_cmds.xcodeproj/xcshareddata/xcschemes/All_iOS.xcscheme -------------------------------------------------------------------------------- /taskpolicy/taskpolicy-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/taskpolicy/taskpolicy-entitlements.plist -------------------------------------------------------------------------------- /taskpolicy/taskpolicy.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/taskpolicy/taskpolicy.8 -------------------------------------------------------------------------------- /taskpolicy/taskpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/taskpolicy/taskpolicy.c -------------------------------------------------------------------------------- /tests/system_cmds.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/tests/system_cmds.plist.in -------------------------------------------------------------------------------- /vifs/vifs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vifs/vifs.8 -------------------------------------------------------------------------------- /vifs/vifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vifs/vifs.c -------------------------------------------------------------------------------- /vipw/pw_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vipw/pw_util.c -------------------------------------------------------------------------------- /vipw/pw_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vipw/pw_util.h -------------------------------------------------------------------------------- /vipw/vipw.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vipw/vipw.8 -------------------------------------------------------------------------------- /vipw/vipw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vipw/vipw.c -------------------------------------------------------------------------------- /vipw/vipw.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vipw/vipw.plist.part -------------------------------------------------------------------------------- /vm_purgeable_stat/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vm_purgeable_stat/entitlements.plist -------------------------------------------------------------------------------- /vm_purgeable_stat/vm_purgeable_stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vm_purgeable_stat/vm_purgeable_stat.1 -------------------------------------------------------------------------------- /vm_purgeable_stat/vm_purgeable_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vm_purgeable_stat/vm_purgeable_stat.c -------------------------------------------------------------------------------- /vm_stat/vm_stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vm_stat/vm_stat.1 -------------------------------------------------------------------------------- /vm_stat/vm_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/vm_stat/vm_stat.c -------------------------------------------------------------------------------- /wait4path/wait4path.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/wait4path/wait4path.1 -------------------------------------------------------------------------------- /wait4path/wait4path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/wait4path/wait4path.c -------------------------------------------------------------------------------- /wait4path/wait4path.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/wait4path/wait4path.version -------------------------------------------------------------------------------- /wordexp-helper/wordexp-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/wordexp-helper/wordexp-helper.c -------------------------------------------------------------------------------- /xcconfigs/base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xcconfigs/base.xcconfig -------------------------------------------------------------------------------- /xcconfigs/development.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xcconfigs/development.xcconfig -------------------------------------------------------------------------------- /xcconfigs/executable.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xcconfigs/executable.xcconfig -------------------------------------------------------------------------------- /xcconfigs/wait4path.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xcconfigs/wait4path.xcconfig -------------------------------------------------------------------------------- /xcodescripts/install-test-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xcodescripts/install-test-files.sh -------------------------------------------------------------------------------- /xscripts/darwinversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xscripts/darwinversion.sh -------------------------------------------------------------------------------- /xscripts/install-opensource.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/xscripts/install-opensource.sh -------------------------------------------------------------------------------- /zdump/zdump.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zdump/zdump.8 -------------------------------------------------------------------------------- /zdump/zdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zdump/zdump.c -------------------------------------------------------------------------------- /zdump/zdump.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zdump/zdump.plist.part -------------------------------------------------------------------------------- /zic/Makefile.zoneinfo.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/Makefile.zoneinfo.dist -------------------------------------------------------------------------------- /zic/ZIC_HACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/ZIC_HACK -------------------------------------------------------------------------------- /zic/build_zichost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/build_zichost.sh -------------------------------------------------------------------------------- /zic/generate_zoneinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/generate_zoneinfo.sh -------------------------------------------------------------------------------- /zic/install_zoneinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/install_zoneinfo.sh -------------------------------------------------------------------------------- /zic/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/private.h -------------------------------------------------------------------------------- /zic/tzconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/tzconfig.h -------------------------------------------------------------------------------- /zic/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/tzfile.h -------------------------------------------------------------------------------- /zic/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/version.h -------------------------------------------------------------------------------- /zic/zic.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/zic.8 -------------------------------------------------------------------------------- /zic/zic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/zic.c -------------------------------------------------------------------------------- /zic/zic.plist.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zic/zic.plist.part -------------------------------------------------------------------------------- /zlog/SymbolicationHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zlog/SymbolicationHelper.c -------------------------------------------------------------------------------- /zlog/SymbolicationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zlog/SymbolicationHelper.h -------------------------------------------------------------------------------- /zlog/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zlog/entitlements.plist -------------------------------------------------------------------------------- /zlog/zlog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zlog/zlog.1 -------------------------------------------------------------------------------- /zlog/zlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zlog/zlog.c -------------------------------------------------------------------------------- /zprint/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zprint/entitlements.plist -------------------------------------------------------------------------------- /zprint/test_zprint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zprint/test_zprint.lua -------------------------------------------------------------------------------- /zprint/zprint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zprint/zprint.1 -------------------------------------------------------------------------------- /zprint/zprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zprint/zprint.c -------------------------------------------------------------------------------- /zprint/zprint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/system_cmds/HEAD/zprint/zprint.lua --------------------------------------------------------------------------------