Last active
May 8, 2025 15:08
-
-
Save 166MMX/b7cc01b01227ee406a14f68ed020259a to your computer and use it in GitHub Desktop.
macOS Sierra /usr/bin/ Origin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
main() { | |
header | |
find "$1" \( -type f -o -type l \) -print0 | while IFS= read -r -d ''; do | |
second "$REPLY" | |
done | |
} | |
second() { | |
#printf $'second %s:\n' "$1" >&2 | |
#printf 'time %s:' 'pkginfo' >&2 | |
#pkginfo_data="$(pkginfo "$1")" | |
#printf 'time %s:' 'signinfo' >&2 | |
#signinfo_data="$(signinfo "$1")" | |
#printf 'time %s:' 'probe_file' >&2 | |
type_data="$(probe_file "$1")" | |
#printf 'time %s:' 'probe_bin' >&2 | |
project_data="$(probe_project "$1" "$type_data")" | |
#printf 'time %s:' 'probe_bin' >&2 | |
probe_data="$(probe_bin "$1" "$type_data")" | |
#printf 'time %s:' 'man_record' >&2 | |
man_data="$(man_record "$1")" | |
printf '%s\t%s\t%s\t%s\t%s\n' "$1" "$type_data" "$project_data" "$probe_data" "$man_data" | |
} | |
export -f second | |
header() { | |
printf '%s\t%s\t%s\t%s\t%s\n' 'tool' 'file --brief' 'project' 'bin str grep' $'man header left\tman header mid\tman header right\tman footer left\tman footer mid\tman footer right' | |
} | |
probe_file() { | |
file --brief -- "$1" | \ | |
head -1 | \ | |
sed 's/:.*$//' | |
} | |
export -f probe_file | |
probe_bin() { | |
if echo "$2" | grep -q 'Mach-O'; then | |
strings="$(strings -- "$1")" | |
{ | |
if grep -U -F -i -q 'shim_marker' "$1"; then | |
echo 'Shim' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'BSD'; then | |
local foo | |
foo=0 | |
if echo "$strings" | grep -U -F -i -q 'NetBSD'; then | |
echo 'FreeBSD' | |
foo=1 | |
fi | |
if echo "$strings" | grep -U -F -i -q 'OpenBSD'; then | |
echo 'OpenBSD' | |
foo=1 | |
fi | |
if echo "$strings" | grep -U -F -i -q 'FreeBSD'; then | |
echo 'FreeBSD' | |
foo=1 | |
fi | |
if [ "$foo" -eq 0 ]; then | |
echo 'BSD' | |
fi | |
unset foo | |
fi | |
if echo "$strings" | grep -U -F -i -q 'Berkeley'; then | |
echo 'Berkeley' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'Darwin'; then | |
echo 'Darwin' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'Apple'; then | |
echo 'Apple' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'Unix'; then | |
echo 'Unix' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'Linux'; then | |
echo 'Linux' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'GNU'; then | |
echo 'GNU' | |
fi | |
if echo "$strings" | grep -U -F -i -q 'FSF'; then | |
echo 'FSF' | |
fi | |
if echo "$strings" | grep -U -E -i -q 'Copyright|\(c\)|©'; then | |
echo 'Copyright' | |
fi | |
echo "$strings" | grep -U -F -q "VERSIONER_PERL_VERSION" && { | |
echo "Perl" | |
} | |
if [ "$found" != "1" ]; then | |
if [ "$(dd bs=1 count=2 "if=$1" of=/dev/stdout 2>/dev/null)" == '#!' ]; then | |
echo "ShBang: $(sed -n 1p < "$1"): $1" | |
fi | |
fi | |
} | tr '\n' ',' | sed 's/,$//' | |
elif [ "$(dd bs=1 count=2 "if=$1" of=/dev/stdout 2>/dev/null)" == '#!' ]; then | |
echo 'script' | |
fi | |
} | |
export -f probe_bin | |
man_cat() { | |
base="$(basename -- "$1")" | |
/usr/bin/man -- 1 "$base" | col -b -x | |
} | |
export -f man_cat | |
man_header_footer() { | |
echo "$1" | \ | |
sed '/^$/d;' | \ | |
sed -n '1p;$p' | \ | |
while read -r; do printf '%78s\n' "$REPLY"; done | \ | |
#tee /dev/ttys007 | \ | |
sed -E 's/ {3,39}/;/g' | \ | |
awk 'BEGIN { FS=";"; OFS="\t"; ORS="\t"; } NF==2 && $1==$2 { $2=""; $3=$1; } { $1=$1; print }' | \ | |
sed $'s/\t$//' | |
} | |
export -f man_header_footer | |
man_record() { | |
result="" | |
#printf 'time %s:' 'man_cat' >&2 | |
man_content="$(man_cat "$1" 2>/dev/null)" | |
if [ $? -eq 0 ]; then | |
#printf 'time %s:' 'man_header_footer' >&2 | |
result="$(man_header_footer "$man_content")" | |
fi | |
if [ $(count_tokens_by_tabs "$result") -ne 6 ]; then | |
result="" | |
#echo "$result||$1" >/dev/ttys008 | |
fi | |
if [ -z "$result" ]; then | |
result=$'\t\t\t\t\t' | |
fi | |
echo "$result" | |
} | |
pkginfo() { | |
pkgutil --file-info "$1" | awk -F ': ' -v ORS=',' '$1=="pkgid" { print $2 }' | sed 's/,$//' | |
} | |
export -f pkginfo | |
signinfo() { | |
codesign -d -vvvv -- "$1" 2>&1 | awk -F '=' '$1=="Identifier" { print $2 }' | |
} | |
export -f signinfo | |
count_tokens_by_tabs() { | |
echo "$*" | tr '\t' '\n' | wc -l | |
} | |
export -f count_tokens_by_tabs | |
probe_project() { | |
if echo "$2" | grep -q 'Mach-O'; then | |
str="$(strings -- "$1")" | |
compileStr="$(appleCompipleStr "$str")" | |
if [ -n "$compileStr" ]; then | |
project="$(appleProject "$compileStr")" | |
if [ -z "$project" ]; then | |
project='Unknown' | |
fi | |
echo "$project" | |
fi | |
fi | |
} | |
export -f probe_project | |
appleCompipleStr() { | |
echo "$1" | pcregrep -o1 -o2 --om-separator=';' '(?:\??@+\(#\))\s*(?:PROGRAM:)?(.+?)\s+(?:PROJECT:)?(.+)(?:-)' | |
} | |
export -f appleCompipleStr | |
appleProgram() { | |
echo "$1" | sed 's/;.*//' | |
} | |
export -f appleProgram | |
appleProject() { | |
echo "$1" | sed 's/.*;//' | |
} | |
export -f appleProject | |
main "$*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tool | file --brief | project | bin str grep | man header left | man header mid | man header right | man footer left | man footer mid | man footer right | |
---|---|---|---|---|---|---|---|---|---|---|
/usr/bin/2to3 | a /usr/bin/python script text executable, ASCII text | script | ||||||||
/usr/bin/2to3- | a /usr/bin/python script text executable, ASCII text | script | ||||||||
/usr/bin/2to3-2.7 | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/2to32.6 | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/a2p | Mach-O universal binary with 2 architectures | Apple,Perl | A2P(1) | Perl Programmers Reference Guide | A2P(1) | perl v5.18.2 | 2014-01-06 | A2P(1) | ||
/usr/bin/a2p5.16 | Mach-O universal binary with 2 architectures | A2P(1) | Perl Programmers Reference Guide | A2P(1) | perl v5.16.3 | 2013-03-04 | A2P(1) | |||
/usr/bin/a2p5.18 | Mach-O universal binary with 2 architectures | A2P(1) | Perl Programmers Reference Guide | A2P(1) | perl v5.18.2 | 2014-01-06 | A2P(1) | |||
/usr/bin/addftinfo | Mach-O 64-bit executable x86_64 | Apple,GNU | ADDFTINFO(1) | ADDFTINFO(1) | Groff Version 1.19.2 | 27 June 2001 | ADDFTINFO(1) | |||
/usr/bin/afclip | Mach-O 64-bit executable x86_64 | Apple,Copyright | ||||||||
/usr/bin/afconvert | Mach-O 64-bit executable x86_64 | Apple,Copyright | AFCONVERT(1) | BSD General Commands Manual | AFCONVERT(1) | Darwin | February 13, 2007 | Darwin | ||
/usr/bin/afhash | Mach-O 64-bit executable x86_64 | Apple,Copyright | AFHASH(1) | BSD General Commands Manual | AFHASH(1) | Darwin | February 13, 2007 | Darwin | ||
/usr/bin/afida | Mach-O 64-bit executable x86_64 | Apple,Copyright | AFIDA(1) | BSD General Commands Manual | AFIDA(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/afinfo | Mach-O 64-bit executable x86_64 | Apple,Copyright | AFINFO(1) | BSD General Commands Manual | AFINFO(1) | Darwin | February 13, 2007 | Darwin | ||
/usr/bin/afmtodit | a /usr/bin/perl -w script text executable, ASCII text | script | AFMTODIT(1) | AFMTODIT(1) | Groff Version 1.19.2 | 13 February 2005 | AFMTODIT(1) | |||
/usr/bin/afplay | Mach-O 64-bit executable x86_64 | Apple,Copyright | AFPLAY(1) | BSD General Commands Manual | AFPLAY(1) | Darwin | February 13, 2007 | Darwin | ||
/usr/bin/afscexpand | Mach-O 64-bit executable x86_64 | Apple | afscexpand(1) | BSD General Commands Manual | afscexpand(1) | Mac OS X | February 7, 2009 | Mac OS X | ||
/usr/bin/agentxtrap | Mach-O 64-bit executable x86_64 | AGENTXTRAP(1) | Net-SNMP | AGENTXTRAP(1) | V5.6.2.1 | 20 Dec 2009 | AGENTXTRAP(1) | |||
/usr/bin/agvtool | Mach-O 64-bit executable x86_64 | Shim | AGVTOOL(1) | BSD General Commands Manual | AGVTOOL(1) | OS X | April 11, 2012 | OS X | ||
/usr/bin/alias | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/applesingle | Mach-O 64-bit executable x86_64 | Apple,Copyright | APPLESINGLE(1) | BSD General Commands Manual | APPLESINGLE(1) | Darwin | 14 November 2005 | Darwin | ||
/usr/bin/appletviewer | Mach-O universal binary with 2 architectures | Apple | appletviewer(1) | appletviewer(1) | 23 Apr 2001 | appletviewer(1) | ||||
/usr/bin/apply | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | APPLY(1) | BSD General Commands Manual | APPLY(1) | BSD | April 4, 1994 | BSD | |
/usr/bin/apropos | POSIX shell script text executable, ASCII text | script | apropos(1) | apropos(1) | September 19, 2005 | apropos(1) | ||||
/usr/bin/apt | Mach-O universal binary with 2 architectures | Apple | apt(1) | apt(1) | 13 June 2004 | apt(1) | ||||
/usr/bin/ar | Mach-O 64-bit executable x86_64 | Shim | AR(1) | BSD General Commands Manual | AR(1) | Darwin | July 27, 2005 | Darwin | ||
/usr/bin/arch | Mach-O universal binary with 2 architectures | system_cmds | ARCH(1) | BSD General Commands Manual | ARCH(1) | Mac OS X | July 8, 2010 | Mac OS X | ||
/usr/bin/as | Mach-O 64-bit executable x86_64 | Shim | AS(1) | AS(1) | Apple Inc. | February 12, 2015 | AS(1) | |||
/usr/bin/asa | Mach-O 64-bit executable x86_64 | Shim | ASA(1) | BSD General Commands Manual | ASA(1) | BSD | September 23, 1993 | BSD | ||
/usr/bin/asctl | Mach-O 64-bit executable x86_64 | AppSandbox | Apple | asctl(1) | BSD General Commands Manual | asctl(1) | Darwin | February 20, 2014 | Darwin | |
/usr/bin/AssetCacheLocatorUtil | Mach-O 64-bit executable x86_64 | AssetCacheServices | ||||||||
/usr/bin/assetutil | Mach-O 64-bit executable x86_64 | CoreUI | Apple,Copyright | assetutil(1) | BSD General Commands Manual | assetutil(1) | Darwin | Dec 3, 2015 | Darwin | |
/usr/bin/at | setuid Mach-O universal binary with 2 architectures | system_cmds | Unix | AT(1) | BSD General Commands Manual | AT(1) | BSD | January 13, 2002 | BSD | |
/usr/bin/atos | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | atos(1) | BSD General Commands Manual | atos(1) | BSD | January 15, 2010 | BSD | |
/usr/bin/atq | setuid Mach-O universal binary with 2 architectures | system_cmds | Unix | AT(1) | BSD General Commands Manual | AT(1) | BSD | January 13, 2002 | BSD | |
/usr/bin/atrm | setuid Mach-O universal binary with 2 architectures | system_cmds | Unix | AT(1) | BSD General Commands Manual | AT(1) | BSD | January 13, 2002 | BSD | |
/usr/bin/atsutil | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/automator | Mach-O 64-bit executable x86_64 | Apple,Copyright | AUTOMATOR(1) | BSD General Commands Manual | AUTOMATOR(1) | Mac OS X | April 1, 2007 | Mac OS X | ||
/usr/bin/auval | POSIX shell script text executable, ASCII text | script | AUVAL(1) | BSD General Commands Manual | AUVAL(1) | Darwin | February 13, 2006 | Darwin | ||
/usr/bin/auvaltool | Mach-O universal binary with 2 architectures | Apple,Copyright | AUVAL(1) | BSD General Commands Manual | AUVAL(1) | Darwin | February 13, 2006 | Darwin | ||
/usr/bin/avbdiagnose | Mach-O 64-bit executable x86_64 | BSD,Apple | avbdiagnose(1) | BSD General Commands Manual | avbdiagnose(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/avbutil | Mach-O 64-bit executable x86_64 | BSD,Apple | avbutil(1) | BSD General Commands Manual | avbutil(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/avconvert | Mach-O 64-bit executable x86_64 | Apple | AVCONVERT(1) | BSD General Commands Manual | AVCONVERT(1) | Mac OS X | December 14, 2011 | Mac OS X | ||
/usr/bin/avmetareadwrite | Mach-O 64-bit executable x86_64 | |||||||||
/usr/bin/awk | Mach-O 64-bit executable x86_64 | awk | Apple,Unix | AWK(1) | AWK(1) | AWK(1) | ||||
/usr/bin/banner | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | |||||||
/usr/bin/base64 | Mach-O 64-bit executable x86_64 | Apple | base64(1) | BSD General Commands Manual | base64(1) | Mac OS X 10.7 | February 8, 2011 | Mac OS X 10.7 | ||
/usr/bin/basename | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | BASENAME(1) | BSD General Commands Manual | BASENAME(1) | BSD | April 18, 1994 | BSD | |
/usr/bin/bashbug | POSIX shell script text executable, ASCII text | script | BASHBUG(1) | BASHBUG(1) | GNU Bash-4.4 | 2016 February 15 | BASHBUG(1) | |||
/usr/bin/batch | setuid Mach-O universal binary with 2 architectures | system_cmds | Unix | AT(1) | BSD General Commands Manual | AT(1) | BSD | January 13, 2002 | BSD | |
/usr/bin/bc | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU,Copyright | bc(1) | bc(1) | . | bc(1) | ||||
/usr/bin/bg | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/biff | Mach-O 64-bit executable x86_64 | mail_cmds | FreeBSD,Copyright | BIFF(1) | BSD General Commands Manual | BIFF(1) | BSD | July 9, 2002 | BSD | |
/usr/bin/binhex | Mach-O 64-bit executable x86_64 | Apple,Copyright | APPLESINGLE(1) | BSD General Commands Manual | APPLESINGLE(1) | Darwin | 14 November 2005 | Darwin | ||
/usr/bin/binhex.pl | a /usr/bin/perl script text executable, ASCII text | script | BINHEX(1) | User Contributed Perl Documentation | BINHEX(1) | perl v5.18.2 | 2013-09-06 | BINHEX(1) | ||
/usr/bin/binhex5.18.pl | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | ||||||||
/usr/bin/bioutil | Mach-O 64-bit executable x86_64 | Apple | bioutil(1) | BSD General Commands Manual | bioutil(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/bison | Mach-O 64-bit executable x86_64 | Shim | BISON(1) | BISON(1) | local | BISON(1) | ||||
/usr/bin/bitesize.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | bitesize.d(1m) | USER COMMANDS | bitesize.d(1m) | version 1.00 | Jun 15, 2005 | bitesize.d(1m) | ||
/usr/bin/brctl | Mach-O 64-bit executable x86_64 | CloudDocs | Apple | BRCTL(1) | BSD General Commands Manual | BRCTL(1) | Mac OS | February 21, 2017 | Mac OS | |
/usr/bin/bsdtar | Mach-O 64-bit executable x86_64 | libarchive | BSD | BSDTAR(1) | BSD General Commands Manual | BSDTAR(1) | BSD | Oct 12, 2009 | BSD | |
/usr/bin/bspatch | Mach-O 64-bit executable x86_64 | BSD | BSPATCH(1) | BSD General Commands Manual | BSPATCH(1) | FreeBSD | May 18, 2003 | FreeBSD | ||
/usr/bin/btmmdiagnose | Bourne-Again shell script text executable, ASCII text | script | ||||||||
/usr/bin/BuildStrings | Mach-O 64-bit executable x86_64 | Shim | BuildStrings(1) | BSD General Commands Manual | BuildStrings(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/bunzip2 | Mach-O 64-bit executable x86_64 | bzip2 | Copyright | bzip2(1) | bzip2(1) | bzip2(1) | ||||
/usr/bin/bzcat | Mach-O 64-bit executable x86_64 | bzip2 | Copyright | bzip2(1) | bzip2(1) | bzip2(1) | ||||
/usr/bin/bzcmp | POSIX shell script text executable, ASCII text | script | BZDIFF(1) | BZDIFF(1) | BZDIFF(1) | |||||
/usr/bin/bzdiff | POSIX shell script text executable, ASCII text | script | BZDIFF(1) | BZDIFF(1) | BZDIFF(1) | |||||
/usr/bin/bzegrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/bzfgrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/bzgrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/bzip2 | Mach-O 64-bit executable x86_64 | bzip2 | Copyright | bzip2(1) | bzip2(1) | bzip2(1) | ||||
/usr/bin/bzip2recover | Mach-O 64-bit executable x86_64 | bzip2 | bzip2(1) | bzip2(1) | bzip2(1) | |||||
/usr/bin/bzless | POSIX shell script text executable, ASCII text | script | BZMORE(1) | BZMORE(1) | BZMORE(1) | |||||
/usr/bin/bzmore | POSIX shell script text executable, ASCII text | script | BZMORE(1) | BZMORE(1) | BZMORE(1) | |||||
/usr/bin/c++ | Mach-O 64-bit executable x86_64 | Shim | CLANG(1) | Clang | CLANG(1) | clang-800 | October 02, 2016 | CLANG(1) | ||
/usr/bin/c++filt | Mach-O 64-bit executable x86_64 | FreeBSD,Apple,Linux,GNU,Copyright | C++FILT(1) | GNU Development Tools | C++FILT(1) | binutils-070207 | 2007-02-07 | C++FILT(1) | ||
/usr/bin/c2ph | a /usr/bin/perl script text executable, ASCII text | script | C2PH(1) | Perl Programmers Reference Guide | C2PH(1) | perl v5.24.0 | 2016-11-12 | C2PH(1) | ||
/usr/bin/c2ph5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | C2PH(1) | Perl Programmers Reference Guide | C2PH(1) | perl v5.16.3 | 2016-07-30 | C2PH(1) | ||
/usr/bin/c2ph5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | C2PH(1) | Perl Programmers Reference Guide | C2PH(1) | perl v5.18.2 | 2016-07-30 | C2PH(1) | ||
/usr/bin/c89 | Mach-O 64-bit executable x86_64 | Shim | C89(1) | BSD General Commands Manual | C89(1) | BSD | October 7, 2002 | BSD | ||
/usr/bin/c99 | Mach-O 64-bit executable x86_64 | Shim | C99(1) | BSD General Commands Manual | C99(1) | BSD | October 7, 2002 | BSD | ||
/usr/bin/c_rehash | a /usr/bin/perl script text executable, ASCII text | script | VERIFY(1) | OpenSSL | VERIFY(1) | 0.9.8 | 2016-10-04 | VERIFY(1) | ||
/usr/bin/caffeinate | Mach-O 64-bit executable x86_64 | |||||||||
/usr/bin/cal | Mach-O 64-bit executable x86_64 | misc_cmds | FreeBSD | CAL(1) | BSD General Commands Manual | CAL(1) | BSD | November 23, 2004 | BSD | |
/usr/bin/calendar | Mach-O 64-bit executable x86_64 | misc_cmds | FreeBSD | CALENDAR(1) | BSD General Commands Manual | CALENDAR(1) | BSD | June 13, 2002 | BSD | |
/usr/bin/cancel | Mach-O 64-bit executable x86_64 | cancel(1) | Apple Inc. | cancel(1) | 15 April 2014 | CUPS | cancel(1) | |||
/usr/bin/cap_mkdb | Mach-O 64-bit executable x86_64 | adv_cmds | CAP_MKDB(1) | BSD General Commands Manual | CAP_MKDB(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/captoinfo | Mach-O 64-bit executable x86_64 | ncurses | captoinfo(1M) | captoinfo(1M) | captoinfo(1M) | |||||
/usr/bin/cc | Mach-O 64-bit executable x86_64 | Shim | CLANG(1) | Clang | CLANG(1) | clang-800 | October 02, 2016 | CLANG(1) | ||
/usr/bin/cd | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/certtool | Mach-O 64-bit executable x86_64 | security_certtool | Apple,Unix | CERTTOOL(1) | CERTTOOL(1) | Apple Computer, Inc. | March 19, 2003 | CERTTOOL(1) | ||
/usr/bin/checknr | Mach-O 64-bit executable x86_64 | doc_cmds | FreeBSD | CHECKNR(1) | BSD General Commands Manual | CHECKNR(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/chflags | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD | CHFLAGS(1) | BSD General Commands Manual | CHFLAGS(1) | BSD | March 3, 2006 | BSD | |
/usr/bin/chfn | Mach-O universal binary with 2 architectures | system_cmds | Apple | CHPASS(1) | BSD General Commands Manual | CHPASS(1) | BSD | December 30, 1993 | BSD | |
/usr/bin/chgrp | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Unix,Copyright | CHGRP(1) | BSD General Commands Manual | CHGRP(1) | BSD | March 31, 1994 | BSD | |
/usr/bin/chpass | Mach-O universal binary with 2 architectures | system_cmds | Apple | CHPASS(1) | BSD General Commands Manual | CHPASS(1) | BSD | December 30, 1993 | BSD | |
/usr/bin/chsh | Mach-O universal binary with 2 architectures | system_cmds | Apple | CHPASS(1) | BSD General Commands Manual | CHPASS(1) | BSD | December 30, 1993 | BSD | |
/usr/bin/cksum | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Copyright | CKSUM(1) | BSD General Commands Manual | CKSUM(1) | BSD | April 28, 1995 | BSD | |
/usr/bin/clang | Mach-O 64-bit executable x86_64 | Shim | CLANG(1) | Clang | CLANG(1) | clang-800 | October 02, 2016 | CLANG(1) | ||
/usr/bin/clang++ | Mach-O 64-bit executable x86_64 | Shim | CLANG(1) | Clang | CLANG(1) | clang-800 | October 02, 2016 | CLANG(1) | ||
/usr/bin/clear | Mach-O 64-bit executable x86_64 | ncurses | clear(1) | clear(1) | clear(1) | |||||
/usr/bin/cmp | Mach-O 64-bit executable x86_64 | gnudiff | Apple,Unix,GNU,Copyright | CMP(1) | User Commands | CMP(1) | diffutils 2.8.1 | April 2002 | CMP(1) | |
/usr/bin/cmpdylib | Mach-O 64-bit executable x86_64 | Shim | CMPDYLIB(1) | CMPDYLIB(1) | Apple Computer, Inc. | November 3, 1997 | CMPDYLIB(1) | |||
/usr/bin/codesign | Mach-O 64-bit executable x86_64 | codesign | Apple,Unix | CODESIGN(1) | BSD General Commands Manual | CODESIGN(1) | BSD | May 7, 2011 | BSD | |
/usr/bin/codesign_allocate | Mach-O 64-bit executable x86_64 | Shim | CODESIGN_ALLOCATE(1) | CODESIGN_ALLOCATE(1) | Apple, Inc. | March 16, 2009 | CODESIGN_ALLOCATE(1) | |||
/usr/bin/col | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | COL(1) | BSD General Commands Manual | COL(1) | BSD | August 4, 2004 | BSD | |
/usr/bin/colcrt | Mach-O 64-bit executable x86_64 | doc_cmds | FreeBSD | COLCRT(1) | BSD General Commands Manual | COLCRT(1) | BSD | July 31, 2004 | BSD | |
/usr/bin/colldef | Mach-O 64-bit executable x86_64 | adv_cmds | FreeBSD | COLLDEF(1) | BSD General Commands Manual | COLLDEF(1) | BSD | January 27, 1995 | BSD | |
/usr/bin/colrm | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | COLRM(1) | BSD General Commands Manual | COLRM(1) | BSD | August 4, 2004 | BSD | |
/usr/bin/column | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | COLUMN(1) | BSD General Commands Manual | COLUMN(1) | BSD | July 29, 2004 | BSD | |
/usr/bin/comm | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | COMM(1) | BSD General Commands Manual | COMM(1) | BSD | January 26, 2005 | BSD | |
/usr/bin/command | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/compress | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Copyright | COMPRESS(1) | BSD General Commands Manual | COMPRESS(1) | BSD | May 17, 2002 | BSD | |
/usr/bin/config_data | a /usr/bin/perl script text executable, ASCII text | script | CONFIG_DATA(1) | Perl Programmers Reference Guide | CONFIG_DATA(1) | perl v5.18.2 | 2016-07-30 | CONFIG_DATA(1) | ||
/usr/bin/config_data5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | CONFIG_DATA(1) | Perl Programmers Reference Guide | CONFIG_DATA(1) | perl v5.16.3 | 2016-07-30 | CONFIG_DATA(1) | ||
/usr/bin/config_data5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | CONFIG_DATA(1) | Perl Programmers Reference Guide | CONFIG_DATA(1) | perl v5.18.2 | 2016-07-30 | CONFIG_DATA(1) | ||
/usr/bin/corelist | a /usr/bin/perl script text executable, ASCII text | script | CORELIST(1) | Perl Programmers Reference Guide | CORELIST(1) | perl v5.24.0 | 2016-11-12 | CORELIST(1) | ||
/usr/bin/corelist5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | CORELIST(1) | Perl Programmers Reference Guide | CORELIST(1) | perl v5.16.3 | 2016-07-30 | CORELIST(1) | ||
/usr/bin/corelist5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | CORELIST(1) | Perl Programmers Reference Guide | CORELIST(1) | perl v5.18.2 | 2016-07-30 | CORELIST(1) | ||
/usr/bin/cpan | a /usr/bin/perl script text executable, ASCII text | script | CPAN(1) | Perl Programmers Reference Guide | CPAN(1) | perl v5.24.0 | 2016-11-12 | CPAN(1) | ||
/usr/bin/cpan2dist | a /usr/bin/perl script text executable, ASCII text | script | CPAN2DIST(1) | Perl Programmers Reference Guide | CPAN2DIST(1) | perl v5.18.2 | 2016-07-30 | CPAN2DIST(1) | ||
/usr/bin/cpan2dist5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | CPAN2DIST(1) | Perl Programmers Reference Guide | CPAN2DIST(1) | perl v5.16.3 | 2016-07-30 | CPAN2DIST(1) | ||
/usr/bin/cpan2dist5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | CPAN2DIST(1) | Perl Programmers Reference Guide | CPAN2DIST(1) | perl v5.18.2 | 2016-07-30 | CPAN2DIST(1) | ||
/usr/bin/cpan5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | CPAN(1) | Perl Programmers Reference Guide | CPAN(1) | perl v5.16.3 | 2016-07-30 | CPAN(1) | ||
/usr/bin/cpan5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | CPAN(1) | Perl Programmers Reference Guide | CPAN(1) | perl v5.18.2 | 2016-07-30 | CPAN(1) | ||
/usr/bin/cpanp | a /usr/bin/perl script text executable, ASCII text | script | CPANP(1) | Perl Programmers Reference Guide | CPANP(1) | perl v5.18.2 | 2016-07-30 | CPANP(1) | ||
/usr/bin/cpanp-run-perl | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/cpanp-run-perl5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/cpanp-run-perl5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/cpanp5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | CPANP(1) | Perl Programmers Reference Guide | CPANP(1) | perl v5.16.3 | 2016-07-30 | CPANP(1) | ||
/usr/bin/cpanp5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | CPANP(1) | Perl Programmers Reference Guide | CPANP(1) | perl v5.18.2 | 2016-07-30 | CPANP(1) | ||
/usr/bin/cpio | Mach-O 64-bit executable x86_64 | libarchive | BSD | BSDCPIO(1) | BSD General Commands Manual | BSDCPIO(1) | BSD | December 21, 2007 | BSD | |
/usr/bin/CpMac | Mach-O 64-bit executable x86_64 | Shim | CPMAC(1) | BSD General Commands Manual | CPMAC(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/cpp | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/cpu_profiler.d | POSIX shell script text executable, ASCII text | script | ||||||||
/usr/bin/cpuwalk.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | cpuwalk.d(1m) | USER COMMANDS | cpuwalk.d(1m) | version 0.90 | Sep 22, 2005 | cpuwalk.d(1m) | ||
/usr/bin/crc32 | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/crc325.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/crc325.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/creatbyproc.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | creatbyproc.d(1m) | USER COMMANDS | creatbyproc.d(1m) | version 1.00 | Jun 11, 2005 | creatbyproc.d(1m) | ||
/usr/bin/crlrefresh | Mach-O 64-bit executable x86_64 | security_crlrefresh | Apple,Unix | CRLREFRESH(1) | CRLREFRESH(1) | Apple Computer, Inc. | April 13, 2004 | CRLREFRESH(1) | ||
/usr/bin/crontab | setuid Mach-O 64-bit executable x86_64 | cron | FreeBSD,Apple,Unix,Copyright | CRONTAB(1) | BSD General Commands Manual | CRONTAB(1) | BSD | December 29, 1993 | BSD | |
/usr/bin/csdiagnose | a /usr/bin/env perl -w script text executable, ASCII text | script | csdiagnose(1) | BSD General Commands Manual | csdiagnose(1) | OS X | February 21, 2017 | OS X | ||
/usr/bin/csgather | Mach-O 64-bit executable x86_64 | BSD,Apple | csgather(1) | BSD General Commands Manual | csgather(1) | OS X | February 21, 2017 | OS X | ||
/usr/bin/csplit | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | CSPLIT(1) | BSD General Commands Manual | CSPLIT(1) | BSD | January 26, 2005 | BSD | |
/usr/bin/csreq | Mach-O 64-bit executable x86_64 | codesign | Apple,Unix | CSREQ(1) | BSD General Commands Manual | CSREQ(1) | BSD | June 1, 2006 | BSD | |
/usr/bin/csrutil | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/ctags | Mach-O 64-bit executable x86_64 | Shim | CTAGS(1) | BSD General Commands Manual | CTAGS(1) | 4th Berkeley Distribution | June 6, 1993 | 4th Berkeley Distribution | ||
/usr/bin/ctf_insert | Mach-O 64-bit executable x86_64 | Shim | CODESIGN_ALLOCATE(1) | CODESIGN_ALLOCATE(1) | Apple, Inc. | March 2, 2010 | CODESIGN_ALLOCATE(1) | |||
/usr/bin/cu | Mach-O 64-bit executable x86_64 | Unix,GNU,Copyright | cu(1) | cu(1) | Taylor UUCP 1.07 | cu(1) | ||||
/usr/bin/cups-config | POSIX shell script text executable, ASCII text | script | cups-config(1) | Apple Inc. | cups-config(1) | 15 April 2014 | CUPS | cups-config(1) | ||
/usr/bin/cupstestdsc | Mach-O 64-bit executable x86_64 | cupstestdsc(1) | Apple Inc. | cupstestdsc(1) | 11 June 2014 | CUPS | cupstestdsc(1) | |||
/usr/bin/cupstestppd | Mach-O 64-bit executable x86_64 | cupstestppd(1) | Apple Inc. | cupstestppd(1) | 11 June 2014 | CUPS | cupstestppd(1) | |||
/usr/bin/curl | Mach-O 64-bit executable x86_64 | curl | Darwin,Apple,Unix | curl(1) | Curl Manual | curl(1) | Curl 7.40.0 | 30 Nov 2014 | curl(1) | |
/usr/bin/curl-config | POSIX shell script text executable, ASCII text | script | curl-config(1) | curl-config manual | curl-config(1) | Curl 7.17.1 | 25 Oct 2007 | curl-config(1) | ||
/usr/bin/cut | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | CUT(1) | BSD General Commands Manual | CUT(1) | BSD | December 21, 2006 | BSD | |
/usr/bin/cvaffinity | Mach-O 64-bit executable x86_64 | Apple | CVAFFINITY(1) | CVAFFINITY(1) | Xsan File System | June 2014 | CVAFFINITY(1) | |||
/usr/bin/cvcp | Mach-O 64-bit executable x86_64 | Apple | CVCP(1) | CVCP(1) | Xsan File System | December 2015 | CVCP(1) | |||
/usr/bin/cvmkdir | Mach-O 64-bit executable x86_64 | Apple | CVMKDIR(1) | CVMKDIR(1) | Xsan File System | June 2014 | CVMKDIR(1) | |||
/usr/bin/cvmkfile | Mach-O 64-bit executable x86_64 | Apple | CVMKFILE(1) | CVMKFILE(1) | Xsan File System | June 2014 | CVMKFILE(1) | |||
/usr/bin/dappprof | POSIX shell script text executable, ASCII text | script | dappprof(1m) | USER COMMANDS | dappprof(1m) | version 1.10 | May 14, 2005 | dappprof(1m) | ||
/usr/bin/dapptrace | POSIX shell script text executable, ASCII text | script | dapptrace(1m) | USER COMMANDS | dapptrace(1m) | version 1.10 | May 14, 2005 | dapptrace(1m) | ||
/usr/bin/darwinup | Mach-O universal binary with 2 architectures | Darwin,Apple | darwinup(1) | BSD General Commands Manual | darwinup(1) | Darwin | 7 Mar, 2015 | Darwin | ||
/usr/bin/db_archive | Mach-O universal binary with 2 architectures | Berkeley | db_archive(1) | BSD General Commands Manual | db_archive(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_checkpoint | Mach-O universal binary with 2 architectures | Berkeley | db_checkpoint(1) | BSD General Commands Manual | db_checkpoint(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_codegen | Mach-O universal binary with 2 architectures | Berkeley | ||||||||
/usr/bin/db_deadlock | Mach-O universal binary with 2 architectures | Berkeley | db_deadlock(1) | BSD General Commands Manual | db_deadlock(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_dump | Mach-O universal binary with 2 architectures | Berkeley | db_dump(1) | BSD General Commands Manual | db_dump(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_hotbackup | Mach-O universal binary with 2 architectures | Berkeley | ||||||||
/usr/bin/db_load | Mach-O universal binary with 2 architectures | Berkeley | db_load(1) | BSD General Commands Manual | db_load(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_printlog | Mach-O universal binary with 2 architectures | Berkeley | db_printlog(1) | BSD General Commands Manual | db_printlog(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_recover | Mach-O universal binary with 2 architectures | Berkeley | db_recover(1) | BSD General Commands Manual | db_recover(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_stat | Mach-O universal binary with 2 architectures | Berkeley | db_stat(1) | BSD General Commands Manual | db_stat(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_upgrade | Mach-O universal binary with 2 architectures | Berkeley | db_upgrade(1) | BSD General Commands Manual | db_upgrade(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/db_verify | Mach-O universal binary with 2 architectures | Berkeley | db_verify(1) | BSD General Commands Manual | db_verify(1) | Darwin | December 3, 2003 | Darwin | ||
/usr/bin/dbicadmin | a /usr/bin/perl script text executable, ASCII text | script | DBICADMIN(1) | User Contributed Perl Documentation | DBICADMIN(1) | perl v5.18.2 | 2014-01-30 | DBICADMIN(1) | ||
/usr/bin/dbicadmin5.16 | a /usr/bin/env perl5.16 script text executable, ASCII text | script | DBICADMIN(1) | User Contributed Perl Documentation | DBICADMIN(1) | perl v5.16.3 | 2012-10-18 | DBICADMIN(1) | ||
/usr/bin/dbicadmin5.18 | a /usr/bin/env perl5.18 script text executable, ASCII text | script | DBICADMIN(1) | User Contributed Perl Documentation | DBICADMIN(1) | perl v5.18.2 | 2014-01-30 | DBICADMIN(1) | ||
/usr/bin/dbilogstrip | a /usr/bin/perl script text executable, ASCII text | script | DBILOGSTRIP(1) | User Contributed Perl Documentation | DBILOGSTRIP(1) | perl v5.18.2 | 2016-07-30 | DBILOGSTRIP(1) | ||
/usr/bin/dbilogstrip5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | DBILOGSTRIP(1) | User Contributed Perl Documentation | DBILOGSTRIP(1) | perl v5.16.3 | 2016-07-30 | DBILOGSTRIP(1) | ||
/usr/bin/dbilogstrip5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | DBILOGSTRIP(1) | User Contributed Perl Documentation | DBILOGSTRIP(1) | perl v5.18.2 | 2016-07-30 | DBILOGSTRIP(1) | ||
/usr/bin/dbiprof | a /usr/bin/perl script text executable, ASCII text | script | DBIPROF(1) | User Contributed Perl Documentation | DBIPROF(1) | perl v5.18.2 | 2016-07-30 | DBIPROF(1) | ||
/usr/bin/dbiprof5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | DBIPROF(1) | User Contributed Perl Documentation | DBIPROF(1) | perl v5.16.3 | 2016-07-30 | DBIPROF(1) | ||
/usr/bin/dbiprof5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | DBIPROF(1) | User Contributed Perl Documentation | DBIPROF(1) | perl v5.18.2 | 2016-07-30 | DBIPROF(1) | ||
/usr/bin/dbiproxy | a /usr/bin/perl script text executable, ASCII text | script | DBIPROXY(1) | User Contributed Perl Documentation | DBIPROXY(1) | perl v5.18.2 | 2016-07-30 | DBIPROXY(1) | ||
/usr/bin/dbiproxy5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | DBIPROXY(1) | User Contributed Perl Documentation | DBIPROXY(1) | perl v5.16.3 | 2016-07-30 | DBIPROXY(1) | ||
/usr/bin/dbiproxy5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | DBIPROXY(1) | User Contributed Perl Documentation | DBIPROXY(1) | perl v5.18.2 | 2016-07-30 | DBIPROXY(1) | ||
/usr/bin/dc | Mach-O 64-bit executable x86_64 | Apple,GNU,Copyright | DC(1) | DC(1) | GNU Project | 1997-03-25 | DC(1) | |||
/usr/bin/debinhex.pl | a /usr/bin/perl script text executable, ASCII text | script | DEBINHEX(1) | User Contributed Perl Documentation | DEBINHEX(1) | perl v5.18.2 | 2013-09-06 | DEBINHEX(1) | ||
/usr/bin/debinhex5.18.pl | a /usr/bin/perl5.18 -w script text executable, Non-ISO extended-ASCII text | script | ||||||||
/usr/bin/defaults | Mach-O 64-bit executable x86_64 | Foundation | Apple | DEFAULTS(1) | BSD General Commands Manual | DEFAULTS(1) | Mac OS X | Nov 3, 2003 | Mac OS X | |
/usr/bin/DeRez | Mach-O 64-bit executable x86_64 | Shim | DeRez(1) | DeRez(1) | Mac OS X | July 24, 2000 | DeRez(1) | |||
/usr/bin/desdp | Mach-O 64-bit executable x86_64 | Shim | DESDP(1) | BSD General Commands Manual | DESDP(1) | Mac OS X | June 6, 2002 | Mac OS X | ||
/usr/bin/diff | Mach-O 64-bit executable x86_64 | gnudiff | GNU,Copyright | DIFF(1) | User Commands | DIFF(1) | diffutils 2.8.1 | April 2002 | DIFF(1) | |
/usr/bin/diff3 | Mach-O 64-bit executable x86_64 | gnudiff | GNU,Copyright | DIFF3(1) | User Commands | DIFF3(1) | diffutils 2.8.1 | April 2002 | DIFF3(1) | |
/usr/bin/diffstat | Mach-O 64-bit executable x86_64 | patch_cmds | DIFFSTAT(1) | DIFFSTAT(1) | DIFFSTAT(1) | |||||
/usr/bin/dig | Mach-O 64-bit executable x86_64 | Apple,Unix | DIG(1) | BIND9 | DIG(1) | BIND9 | Jun 30, 2000 | DIG(1) | ||
/usr/bin/dirname | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | BASENAME(1) | BSD General Commands Manual | BASENAME(1) | BSD | April 18, 1994 | BSD | |
/usr/bin/diskhits | POSIX shell script text executable, ASCII text | script | diskhits(1m) | USER COMMANDS | diskhits(1m) | version 0.72 | Apr 20, 2006 | diskhits(1m) | ||
/usr/bin/dispqlen.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | dispqlen.d(1m) | USER COMMANDS | dispqlen.d(1m) | version 0.80 | Jun 27, 2005 | dispqlen.d(1m) | ||
/usr/bin/ditto | Mach-O 64-bit executable x86_64 | BomCmds | DITTO(1) | BSD General Commands Manual | DITTO(1) | Mac OS X | December 19, 2008 | Mac OS X | ||
/usr/bin/dns-sd | Mach-O 64-bit executable x86_64 | mDNSResponder | dns-sd(1) | BSD General Commands Manual | dns-sd(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/drutil | Mach-O 64-bit executable x86_64 | FreeBSD,Apple,Unix,Linux,Copyright | DRUTIL(1) | BSD General Commands Manual | DRUTIL(1) | Mac OS X | May 18, 2004 | Mac OS X | ||
/usr/bin/dscacheutil | Mach-O 64-bit executable x86_64 | DSTools | dscacheutil(1) | BSD General Commands Manual | dscacheutil(1) | Darwin | Jan 14, 2007 | Darwin | ||
/usr/bin/dscl | Mach-O 64-bit executable x86_64 | DSTools | Apple | dscl(1) | BSD General Commands Manual | dscl(1) | MacOSX | August 25, 2003 | MacOSX | |
/usr/bin/dserr | Mach-O 64-bit executable x86_64 | DSTools | Apple | |||||||
/usr/bin/dsexport | Mach-O 64-bit executable x86_64 | Apple | dsexport(1) | BSD General Commands Manual | dsexport(1) | BSD | 20 November 2008 | BSD | ||
/usr/bin/dsimport | Mach-O 64-bit executable x86_64 | dsimport(1) | BSD General Commands Manual | dsimport(1) | Darwin | February 21, 2017 | Darwin | |||
/usr/bin/dsmemberutil | Mach-O 64-bit executable x86_64 | DSTools | dsmemberutil(1) | BSD General Commands Manual | dsmemberutil(1) | Darwin | Jan 1, 2007 | Darwin | ||
/usr/bin/dsymutil | Mach-O 64-bit executable x86_64 | Shim | dsymutil(1) | BSD General Commands Manual | dsymutil(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/dtruss | POSIX shell script text executable, ASCII text | script | dtruss(1m) | USER COMMANDS | dtruss(1m) | version 0.80 | Jun 17, 2005 | dtruss(1m) | ||
/usr/bin/du | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Unix,Copyright | DU(1) | BSD General Commands Manual | DU(1) | BSD | June 2, 2004 | BSD | |
/usr/bin/dwarfdump | Mach-O 64-bit executable x86_64 | Shim | dwarfdump(1) | BSD General Commands Manual | dwarfdump(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/easy_install | a /usr/bin/python script text executable, ASCII text | script | ||||||||
/usr/bin/easy_install-2.6 | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/easy_install-2.7 | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/egrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/emacs | Mach-O 64-bit executable x86_64 | BSD,Berkeley,Darwin,Apple,Unix,Linux,GNU,FSF,Copyright | EMACS(1) | EMACS(1) | GNU Emacs 22.1 | 2007 April 13 | EMACS(1) | |||
/usr/bin/emacs-undumped | Mach-O 64-bit executable x86_64 | Darwin,Apple,Unix,GNU,FSF,Copyright | emacs-undumped(1) | BSD General Commands Manual | emacs-undumped(1) | Mac OS X | October 27, 2008 | Mac OS X | ||
/usr/bin/emacsclient | Mach-O 64-bit executable x86_64 | Unix,GNU | EMACSCLIENT(1) | EMACSCLIENT(1) | EMACSCLIENT(1) | |||||
/usr/bin/enc2xs | a /usr/bin/perl script text executable, ASCII text | script | ENC2XS(1) | Perl Programmers Reference Guide | ENC2XS(1) | perl v5.24.0 | 2016-11-12 | ENC2XS(1) | ||
/usr/bin/enc2xs5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ENC2XS(1) | Perl Programmers Reference Guide | ENC2XS(1) | perl v5.16.3 | 2016-07-30 | ENC2XS(1) | ||
/usr/bin/enc2xs5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ENC2XS(1) | Perl Programmers Reference Guide | ENC2XS(1) | perl v5.18.2 | 2016-07-30 | ENC2XS(1) | ||
/usr/bin/encode_keychange | Mach-O 64-bit executable x86_64 | encode_keychange(1) | Net-SNMP | encode_keychange(1) | V5.6.2.1 | 16 Nov 2006 | encode_keychange(1) | |||
/usr/bin/env | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | ENV(1) | BSD General Commands Manual | ENV(1) | BSD | April 17, 2008 | BSD | |
/usr/bin/eqn | Mach-O 64-bit executable x86_64 | Apple,GNU | EQN(1) | EQN(1) | Groff Version 1.19.2 | 20 February 2005 | EQN(1) | |||
/usr/bin/erb | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | ERB(1) | Ruby Programmers Reference Guide | ERB(1) | UNIX | November 15, 2012 | UNIX | ||
/usr/bin/errinfo | a /usr/bin/perl script text executable, ASCII text | script | errinfo(1m) | USER COMMANDS | errinfo(1m) | version 1.10 | May 14, 2005 | errinfo(1m) | ||
/usr/bin/etags | Mach-O 64-bit executable x86_64 | GNU,Copyright | etags(1) | GNU Tools | etags(1) | GNU Tools | 23nov2001 | etags(1) | ||
/usr/bin/ex | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIM(1) | VIM(1) | 2006 Apr 11 | VIM(1) | |||
/usr/bin/execsnoop | POSIX shell script text executable, ASCII text | script | execsnoop(1m) | USER COMMANDS | execsnoop(1m) | version 1.20 | Jul 02, 2005 | execsnoop(1m) | ||
/usr/bin/expand | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | EXPAND(1) | BSD General Commands Manual | EXPAND(1) | BSD | October 13, 2006 | BSD | |
/usr/bin/expect | Mach-O universal binary with 2 architectures | EXPECT(1) | EXPECT(1) | 29 December 1994 | EXPECT(1) | |||||
/usr/bin/extcheck | Mach-O universal binary with 2 architectures | Apple | extcheck(1) | extcheck(1) | 13 June 2000 | extcheck(1) | ||||
/usr/bin/eyapp | a /usr/bin/perl script text executable, ASCII text | script | EYAPP(1) | User Contributed Perl Documentation | EYAPP(1) | perl v5.18.2 | 2010-12-08 | EYAPP(1) | ||
/usr/bin/eyapp5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | EYAPP(1) | User Contributed Perl Documentation | EYAPP(1) | perl v5.16.3 | 2010-12-08 | EYAPP(1) | ||
/usr/bin/eyapp5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | EYAPP(1) | User Contributed Perl Documentation | EYAPP(1) | perl v5.18.2 | 2010-12-08 | EYAPP(1) | ||
/usr/bin/false | Mach-O 64-bit executable x86_64 | shell_cmds | FALSE(1) | BSD General Commands Manual | FALSE(1) | 4.2 Berkeley Distribution | July 24, 1991 | 4.2 Berkeley Distribution | ||
/usr/bin/fc | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/fddist | POSIX shell script text executable, ASCII text | script | fddist(1m) | USER COMMANDS | fddist(1m) | version 0.70 | Jun 08, 2005 | fddist(1m) | ||
/usr/bin/fdesetup | Mach-O 64-bit executable x86_64 | BSD,Apple | ||||||||
/usr/bin/fg | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/fgrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/file | Mach-O universal binary with 2 architectures | file | FreeBSD,OpenBSD,FreeBSD,Apple,Unix,Linux,GNU | FILE(1) | BSD General Commands Manual | FILE(1) | BSD | September 11, 2015 | BSD | |
/usr/bin/filebyproc.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | filebyproc.d(1m) | USER COMMANDS | filebyproc.d(1m) | version 1.00 | May 15, 2005 | filebyproc.d(1m) | ||
/usr/bin/filtercalltree | Mach-O universal binary with 2 architectures | SamplingTools | Apple | filtercalltree(1) | BSD General Commands Manual | filtercalltree(1) | BSD | May 7, 2011 | BSD | |
/usr/bin/find | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Unix | FIND(1) | BSD General Commands Manual | FIND(1) | BSD | September 28, 2011 | BSD | |
/usr/bin/find2perl | a /usr/bin/perl script text executable, ASCII text | script | FIND2PERL(1) | Perl Programmers Reference Guide | FIND2PERL(1) | perl v5.18.2 | 2016-07-30 | FIND2PERL(1) | ||
/usr/bin/find2perl5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | FIND2PERL(1) | Perl Programmers Reference Guide | FIND2PERL(1) | perl v5.16.3 | 2016-07-30 | FIND2PERL(1) | ||
/usr/bin/find2perl5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | FIND2PERL(1) | Perl Programmers Reference Guide | FIND2PERL(1) | perl v5.18.2 | 2016-07-30 | FIND2PERL(1) | ||
/usr/bin/findrule | a /usr/bin/perl script text executable, ASCII text | script | FINDRULE(1) | User Contributed Perl Documentation | FINDRULE(1) | perl v5.18.2 | 2011-09-19 | FINDRULE(1) | ||
/usr/bin/findrule5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | FINDRULE(1) | User Contributed Perl Documentation | FINDRULE(1) | perl v5.16.3 | 2011-09-19 | FINDRULE(1) | ||
/usr/bin/findrule5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | FINDRULE(1) | User Contributed Perl Documentation | FINDRULE(1) | perl v5.18.2 | 2011-09-19 | FINDRULE(1) | ||
/usr/bin/finger | Mach-O 64-bit executable x86_64 | adv_cmds | FreeBSD | FINGER(1) | BSD General Commands Manual | FINGER(1) | BSD | July 17, 2004 | BSD | |
/usr/bin/fixproc | a /usr/bin/perl script text executable, ASCII text | script | fixproc(1) | Net-SNMP | fixproc(1) | V5.6.2.1 | 16 Nov 2006 | fixproc(1) | ||
/usr/bin/flex | Mach-O 64-bit executable x86_64 | Shim | FLEX(1) | User Commands | FLEX(1) | flex 2.5.35 | February 2008 | FLEX(1) | ||
/usr/bin/flex++ | Mach-O 64-bit executable x86_64 | Shim | FLEX(1) | User Commands | FLEX(1) | flex 2.5.35 | February 2008 | FLEX(1) | ||
/usr/bin/fmt | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | FMT(1) | BSD General Commands Manual | FMT(1) | BSD | August 2, 2004 | BSD | |
/usr/bin/fold | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | FOLD(1) | BSD General Commands Manual | FOLD(1) | BSD | August 2, 2004 | BSD | |
/usr/bin/fontrestore | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/footprint | Mach-O 64-bit executable x86_64 | PerfUtils | Apple | FOOTPRINT(1) | BSD General Commands Manual | FOOTPRINT(1) | OS X | January 24, 1984 | OS X | |
/usr/bin/format-sql | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/format-sql5.16 | a /usr/bin/env perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/format-sql5.18 | a /usr/bin/env perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/from | Mach-O 64-bit executable x86_64 | mail_cmds | FreeBSD,Copyright | FROM(1) | BSD General Commands Manual | FROM(1) | BSD | December 30, 1993 | BSD | |
/usr/bin/fs_usage | Mach-O 64-bit executable x86_64 | system_cmds | Apple,Unix | FS_USAGE(1) | BSD General Commands Manual | FS_USAGE(1) | Mac OS X | November 7, 2002 | Mac OS X | |
/usr/bin/ftp | Mach-O 64-bit executable x86_64 | FreeBSD,Unix | FTP(1) | BSD General Commands Manual | FTP(1) | BSD | July 18, 2007 | BSD | ||
/usr/bin/funzip | Mach-O 64-bit executable x86_64 | FUNZIP(1L) | FUNZIP(1L) | Info-ZIP | 20 April 2009 (v3.95) | FUNZIP(1L) | ||||
/usr/bin/fuser | a /usr/bin/perl -w script text executable, ASCII text | script | FUSER(P) | POSIX Programmer's Manual | FUSER(P) | IEEE/The Open Group | 2003 | FUSER(P) | ||
/usr/bin/fwkdp | Mach-O 64-bit executable x86_64 | fwkdp(1) | BSD General Commands Manual | fwkdp(1) | Mac OS X | July 7, 2015 | Mac OS X | |||
/usr/bin/fwkpfv | Mach-O 64-bit executable x86_64 | fwkpfv(1) | BSD General Commands Manual | fwkpfv(1) | Mac OS X | September 15, 2008 | Mac OS X | |||
/usr/bin/g++ | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/gatherheaderdoc | Mach-O 64-bit executable x86_64 | Shim | GATHERHEADERDOC(1) | BSD General Commands Manual | GATHERHEADERDOC(1) | Darwin | June 13, 2003 | Darwin | ||
/usr/bin/gcc | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/gcore | Mach-O universal binary with 2 architectures | system_cmds | BSD,Apple | gcore(1) | BSD General Commands Manual | gcore(1) | Darwin | February 21, 2017 | Darwin | |
/usr/bin/gcov | Mach-O 64-bit executable x86_64 | Shim | LLVM-COV(1) | LLVM | LLVM-COV(1) | clang-800 | 2016-10-02 | LLVM-COV(1) | ||
/usr/bin/gdiffmk | POSIX shell script text executable, ASCII text | script | GDIFFMK(1) | GDIFFMK(1) | Groff Version 1.19.2 | 26 May 2005 | GDIFFMK(1) | |||
/usr/bin/gem | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | gem(1) | BSD General Commands Manual | gem(1) | BSD | February 6, 2013 | BSD | ||
/usr/bin/gen_bridge_metadata | a /usr/bin/ruby script text executable, ASCII text | script | GEN_BRIDGE_METADATA(1) | BSD General Commands Manual | GEN_BRIDGE_METADATA(1) | BSD | May 24, 2010 | BSD | ||
/usr/bin/gencat | Mach-O 64-bit executable x86_64 | adv_cmds | FreeBSD | GENCAT(1) | BSD General Commands Manual | GENCAT(1) | BSD | June 11, 1997 | BSD | |
/usr/bin/genstrings | Mach-O 64-bit executable x86_64 | Shim | genstrings(1) | BSD General Commands Manual | genstrings(1) | Mac OS X | May 7, 2007 | Mac OS X | ||
/usr/bin/getconf | Mach-O universal binary with 2 architectures | system_cmds | BSD,Darwin,Unix | GETCONF(1) | BSD General Commands Manual | GETCONF(1) | BSD | September 18, 2002 | BSD | |
/usr/bin/GetFileInfo | Mach-O 64-bit executable x86_64 | Shim | GETFILEINFO(1) | BSD General Commands Manual | GETFILEINFO(1) | Mac OS X | September 27, 2005 | Mac OS X | ||
/usr/bin/getopt | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | GETOPT(1) | BSD General Commands Manual | GETOPT(1) | BSD | April 3, 1999 | BSD | |
/usr/bin/getopts | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/git | Mach-O 64-bit executable x86_64 | Shim | GIT(1) | Git Manual | GIT(1) | Git 2.11.1 | 02/02/2017 | GIT(1) | ||
/usr/bin/git-cvsserver | Mach-O 64-bit executable x86_64 | Shim | GIT-CVSSERVER(1) | Git Manual | GIT-CVSSERVER(1) | Git 2.11.1 | 02/02/2017 | GIT-CVSSERVER(1) | ||
/usr/bin/git-receive-pack | Mach-O 64-bit executable x86_64 | Shim | GIT-RECEIVE-PACK(1) | Git Manual | GIT-RECEIVE-PACK(1) | Git 2.11.1 | 02/02/2017 | GIT-RECEIVE-PACK(1) | ||
/usr/bin/git-shell | Mach-O 64-bit executable x86_64 | Shim | GIT-SHELL(1) | Git Manual | GIT-SHELL(1) | Git 2.11.1 | 02/02/2017 | GIT-SHELL(1) | ||
/usr/bin/git-upload-archive | Mach-O 64-bit executable x86_64 | Shim | GIT-UPLOAD-ARCHIVE(1) | Git Manual | GIT-UPLOAD-ARCHIVE(1) | Git 2.11.1 | 02/02/2017 | GIT-UPLOAD-ARCHIVE(1) | ||
/usr/bin/git-upload-pack | Mach-O 64-bit executable x86_64 | Shim | GIT-UPLOAD-PACK(1) | Git Manual | GIT-UPLOAD-PACK(1) | Git 2.11.1 | 02/02/2017 | GIT-UPLOAD-PACK(1) | ||
/usr/bin/gm4 | Mach-O 64-bit executable x86_64 | Shim | M4(1) | User Commands | M4(1) | FSF | August 2006 | M4(1) | ||
/usr/bin/gnuattach | POSIX shell script text executable, ASCII text | script | GNUSERV(1) | GNUSERV(1) | 4th Berkeley Distribution | GNUSERV(1) | ||||
/usr/bin/gnuclient | Mach-O 64-bit executable x86_64 | Unix,GNU | GNUSERV(1) | GNUSERV(1) | 4th Berkeley Distribution | GNUSERV(1) | ||||
/usr/bin/gnudoit | POSIX shell script text executable, ASCII text | script | GNUSERV(1) | GNUSERV(1) | 4th Berkeley Distribution | GNUSERV(1) | ||||
/usr/bin/gnumake | Mach-O 64-bit executable x86_64 | Shim,GNU | MAKE(1) | LOCAL USER COMMANDS | MAKE(1) | GNU | 22 August 1989 | MAKE(1) | ||
/usr/bin/gnuserv | Mach-O 64-bit executable x86_64 | Unix,GNU | GNUSERV(1) | GNUSERV(1) | 4th Berkeley Distribution | GNUSERV(1) | ||||
/usr/bin/gperf | Mach-O 64-bit executable x86_64 | Shim | GPERF(1) | FSF | GPERF(1) | GNU gperf 3.0.3 | October 2011 | GPERF(1) | ||
/usr/bin/grep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/grn | Mach-O 64-bit executable x86_64 | Apple,GNU | GRN(1) | GRN(1) | Groff Version 1.19.2 | 7 August 2004 | GRN(1) | |||
/usr/bin/grodvi | Mach-O 64-bit executable x86_64 | Apple,GNU | GRODVI(1) | GRODVI(1) | Groff Version 1.19.2 | 1 October 2004 | GRODVI(1) | |||
/usr/bin/groff | Mach-O 64-bit executable x86_64 | Apple,GNU,Copyright | GROFF(1) | GROFF(1) | Groff Version 1.19.2 | 3 July 2005 | GROFF(1) | |||
/usr/bin/groffer | POSIX shell script text executable, ASCII text | script | GROFFER(1) | GROFFER(1) | Groff Version 1.19.2 | 22 August 2005 | GROFFER(1) | |||
/usr/bin/grog | POSIX shell script text executable, ASCII text | script | GROG(1) | GROG(1) | Groff Version 1.19.2 | 18 March 2003 | GROG(1) | |||
/usr/bin/grolbp | Mach-O 64-bit executable x86_64 | Apple,GNU | GROLBP(1) | GROLBP(1) | Groff Version 1.19.2 | 25 September 2015 | GROLBP(1) | |||
/usr/bin/grolj4 | Mach-O 64-bit executable x86_64 | Apple,GNU | GROLJ4(1) | GROLJ4(1) | Groff Version 1.19.2 | 14 January 2004 | GROLJ4(1) | |||
/usr/bin/grops | Mach-O 64-bit executable x86_64 | Apple,GNU | GROPS(1) | GROPS(1) | Groff Version 1.19.2 | 21 January 2005 | GROPS(1) | |||
/usr/bin/grotty | Mach-O 64-bit executable x86_64 | Apple,GNU | GROTTY(1) | GROTTY(1) | Groff Version 1.19.2 | 18 July 2003 | GROTTY(1) | |||
/usr/bin/groups | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | GROUPS(1) | BSD General Commands Manual | GROUPS(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/gunzip | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Apple,Unix,Copyright | GZIP(1) | BSD General Commands Manual | GZIP(1) | BSD | October 9, 2011 | BSD | |
/usr/bin/gzcat | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Apple,Unix,Copyright | GZIP(1) | BSD General Commands Manual | GZIP(1) | BSD | October 9, 2011 | BSD | |
/usr/bin/gzexe | POSIX shell script text executable, ASCII text | script | GZEXE(1) | BSD General Commands Manual | GZEXE(1) | BSD | January 26, 2007 | BSD | ||
/usr/bin/gzip | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Apple,Unix,Copyright | GZIP(1) | BSD General Commands Manual | GZIP(1) | BSD | October 9, 2011 | BSD | |
/usr/bin/h2ph | a /usr/bin/perl script text executable, ASCII text | script | H2PH(1) | Perl Programmers Reference Guide | H2PH(1) | perl v5.24.0 | 2016-11-12 | H2PH(1) | ||
/usr/bin/h2ph5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | H2PH(1) | Perl Programmers Reference Guide | H2PH(1) | perl v5.16.3 | 2016-07-30 | H2PH(1) | ||
/usr/bin/h2ph5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | H2PH(1) | Perl Programmers Reference Guide | H2PH(1) | perl v5.18.2 | 2016-07-30 | H2PH(1) | ||
/usr/bin/h2xs | a /usr/bin/perl script text executable, ASCII text | script | H2XS(1) | Perl Programmers Reference Guide | H2XS(1) | perl v5.24.0 | 2016-11-12 | H2XS(1) | ||
/usr/bin/h2xs5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | H2XS(1) | Perl Programmers Reference Guide | H2XS(1) | perl v5.16.3 | 2016-07-30 | H2XS(1) | ||
/usr/bin/h2xs5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | H2XS(1) | Perl Programmers Reference Guide | H2XS(1) | perl v5.18.2 | 2016-07-30 | H2XS(1) | ||
/usr/bin/hash | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/hdid | Mach-O 64-bit executable x86_64 | |||||||||
/usr/bin/hdiutil | Mach-O 64-bit executable x86_64 | BSD,Apple,FSF,Copyright | HDIUTIL(1) | BSD General Commands Manual | HDIUTIL(1) | macOS | 13 Jun 2016 | macOS | ||
/usr/bin/hdxml2manxml | Mach-O 64-bit executable x86_64 | Shim | Document title(1) | BSD General Commands Manual | Document title(1) | Darwin | August 28, 2002 | Darwin | ||
/usr/bin/head | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | HEAD(1) | BSD General Commands Manual | HEAD(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/headerdoc2html | Mach-O 64-bit executable x86_64 | Shim | HEADERDOC2HTML(1) | BSD General Commands Manual | HEADERDOC2HTML(1) | Darwin | June 13, 2003 | Darwin | ||
/usr/bin/heap | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | heap(1) | BSD General Commands Manual | heap(1) | BSD | June 14, 2016 | BSD | |
/usr/bin/heap32 | Mach-O executable i386 | SamplingTools | Apple | heap(1) | BSD General Commands Manual | heap(1) | BSD | June 14, 2016 | BSD | |
/usr/bin/hexdump | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Apple | HEXDUMP(1) | BSD General Commands Manual | HEXDUMP(1) | BSD | July 10, 2004 | BSD | |
/usr/bin/hidutil | Mach-O 64-bit executable x86_64 | HIDUTIL(1) | BSD General Commands Manual | HIDUTIL(1) | March 11, 2016 | |||||
/usr/bin/hiutil | Mach-O 64-bit executable x86_64 | Apple | hiutil(1) | BSD General Commands Manual | hiutil(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/host | Mach-O 64-bit executable x86_64 | Apple,Unix | HOST(1) | BIND9 | HOST(1) | BIND9 | Jun 30, 2000 | HOST(1) | ||
/usr/bin/hostinfo | Mach-O universal binary with 2 architectures | system_cmds | ||||||||
/usr/bin/hotspot.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | hotspot.d(1m) | USER COMMANDS | hotspot.d(1m) | version 0.95 | May 14, 2005 | hotspot.d(1m) | ||
/usr/bin/hpftodit | Mach-O 64-bit executable x86_64 | Apple,GNU,Copyright | HPFTODIT(1) | HPFTODIT(1) | Groff Version 1.19.2 | 14 January 2004 | HPFTODIT(1) | |||
/usr/bin/htmltree | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/htmltree5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/htmltree5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/httpdstat.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | httpdstat.d(1m) | USER COMMANDS | httpdstat.d(1m) | version 0.70 | Nov 20, 2005 | httpdstat.d(1m) | ||
/usr/bin/ibtool | Mach-O 64-bit executable x86_64 | Shim | ibtool(1) | ibtool(1) | Apple Inc. | Mar 19 2015 | ibtool(1) | |||
/usr/bin/iconutil | Mach-O 64-bit executable x86_64 | iconcompiler | iconutil(1) | BSD General Commands Manual | iconutil(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/iconv | Mach-O 64-bit executable x86_64 | libiconv | GNU,Copyright | ICONV(1) | Linux Programmer's Manual | ICONV(1) | GNU | January 22, 2006 | ICONV(1) | |
/usr/bin/ictool | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/id | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | ID(1) | BSD General Commands Manual | ID(1) | BSD | September 26, 2006 | BSD | |
/usr/bin/idle | a /usr/bin/python script text executable, ASCII text | script | ||||||||
/usr/bin/idle2.6 | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/idle2.7 | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/idlj | Mach-O universal binary with 2 architectures | Apple | idlj(1) | idlj(1) | 10 March 2001 | idlj(1) | ||||
/usr/bin/imptrace | Bourne-Again shell script text executable, UTF-8 Unicode text | script | IMPTRACE(1) | BSD General Commands Manual | IMPTRACE(1) | OS X | May 01, 2013 | OS X | ||
/usr/bin/indent | Mach-O 64-bit executable x86_64 | Shim | INDENT(1) | BSD General Commands Manual | INDENT(1) | BSD | June 29, 2004 | BSD | ||
/usr/bin/indxbib | Mach-O 64-bit executable x86_64 | Apple,GNU | INDXBIB(1) | INDXBIB(1) | Groff Version 1.19.2 | 27 June 2001 | INDXBIB(1) | |||
/usr/bin/info | Mach-O 64-bit executable x86_64 | GNU,Copyright | INFO(1) | User Commands | INFO(1) | info 4.8 | December 2004 | INFO(1) | ||
/usr/bin/infocmp | Mach-O 64-bit executable x86_64 | ncurses | infocmp(1M) | infocmp(1M) | infocmp(1M) | |||||
/usr/bin/infokey | Mach-O 64-bit executable x86_64 | GNU,Copyright | INFOKEY(1) | User Commands | INFOKEY(1) | infokey 4.8 | December 2004 | INFOKEY(1) | ||
/usr/bin/infotocap | Mach-O 64-bit executable x86_64 | ncurses | infotocap(1M) | infotocap(1M) | infotocap(1M) | |||||
/usr/bin/install | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Copyright | INSTALL(1) | BSD General Commands Manual | INSTALL(1) | BSD | May 7, 2001 | BSD | |
/usr/bin/install-info | Mach-O 64-bit executable x86_64 | GNU,Copyright | INSTALL-INFO(1) | User Commands | INSTALL-INFO(1) | install-info 4.8 | December 2004 | INSTALL-INFO(1) | ||
/usr/bin/install_name_tool | Mach-O 64-bit executable x86_64 | Shim | INSTALL_NAME_TOOL(1) | INSTALL_NAME_TOOL(1) | Apple, Inc. | March 4, 2009 | INSTALL_NAME_TOOL(1) | |||
/usr/bin/instmodsh | a /usr/bin/perl script text executable, ASCII text | script | INSTMODSH(1) | Perl Programmers Reference Guide | INSTMODSH(1) | perl v5.24.0 | 2016-11-12 | INSTMODSH(1) | ||
/usr/bin/instmodsh5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | INSTMODSH(1) | Perl Programmers Reference Guide | INSTMODSH(1) | perl v5.16.3 | 2016-07-30 | INSTMODSH(1) | ||
/usr/bin/instmodsh5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | INSTMODSH(1) | Perl Programmers Reference Guide | INSTMODSH(1) | perl v5.18.2 | 2016-07-30 | INSTMODSH(1) | ||
/usr/bin/instruments | Mach-O 64-bit executable x86_64 | Shim | instruments(1) | BSD General Commands Manual | instruments(1) | Mac OS | February 21, 2017 | Mac OS | ||
/usr/bin/IOAccelMemory | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/iofile.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | iofile.d(1m) | USER COMMANDS | iofile.d(1m) | version 0.70 | Jul 24, 2005 | iofile.d(1m) | ||
/usr/bin/iofileb.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | iofileb.d(1m) | USER COMMANDS | iofileb.d(1m) | version 1.00 | Feb 20, 2006 | iofileb.d(1m) | ||
/usr/bin/iopattern | Bourne-Again shell script text executable, ASCII text | script | iopattern(1m) | USER COMMANDS | iopattern(1m) | version 0.70 | Jul 25, 2005 | iopattern(1m) | ||
/usr/bin/iopending | POSIX shell script text executable, ASCII text | script | iopending(1m) | USER COMMANDS | iopending(1m) | version 0.60 | Nov 01, 2005 | iopending(1m) | ||
/usr/bin/iosnoop | POSIX shell script text executable, ASCII text | script | iosnoop(1m) | USER COMMANDS | iosnoop(1m) | version 1.50 | Jul 25, 2005 | iosnoop(1m) | ||
/usr/bin/iotop | POSIX shell script text executable, ASCII text | script | iotop(1m) | USER COMMANDS | iotop(1m) | version 0.75 | Oct 25, 2005 | iotop(1m) | ||
/usr/bin/ip2cc | a /usr/bin/perl script text executable, ASCII text | script | IP2CC(1) | User Contributed Perl Documentation | IP2CC(1) | perl v5.18.2 | 2016-07-30 | IP2CC(1) | ||
/usr/bin/ip2cc5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | IP2CC(1) | User Contributed Perl Documentation | IP2CC(1) | perl v5.16.3 | 2016-07-30 | IP2CC(1) | ||
/usr/bin/ip2cc5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | IP2CC(1) | User Contributed Perl Documentation | IP2CC(1) | perl v5.18.2 | 2016-07-30 | IP2CC(1) | ||
/usr/bin/ipcount | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/ipcount5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | ||||||||
/usr/bin/ipcount5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | ||||||||
/usr/bin/ipcrm | Mach-O 64-bit executable x86_64 | file_cmds | ipcrm(1) | BSD General Commands Manual | ipcrm(1) | BSD | August 8, 1994 | BSD | ||
/usr/bin/ipcs | Mach-O 64-bit executable x86_64 | file_cmds | IPCS(1) | BSD General Commands Manual | IPCS(1) | BSD | June 18, 1994 | BSD | ||
/usr/bin/ippfind | Mach-O 64-bit executable x86_64 | ippfind(1) | Apple Inc. | ippfind(1) | 11 June 2014 | CUPS | ippfind(1) | |||
/usr/bin/ipptool | Mach-O 64-bit executable x86_64 | Apple | ipptool(1) | Apple Inc. | ipptool(1) | 26 August 2015 | CUPS | ipptool(1) | ||
/usr/bin/iprofiler | Mach-O 64-bit executable x86_64 | Shim | iprofiler(1) | BSD General Commands Manual | iprofiler(1) | Mac OS | February 21, 2017 | Mac OS | ||
/usr/bin/iptab | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/iptab5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/iptab5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/irb | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | IRB(1) | Ruby Programmers Reference Guide | IRB(1) | UNIX | November 15, 2012 | UNIX | ||
/usr/bin/jar | Mach-O universal binary with 2 architectures | Apple | jar(1) | jar(1) | 22 Jun 2004 | jar(1) | ||||
/usr/bin/jarsigner | Mach-O universal binary with 2 architectures | Apple | jarsigner(1) | jarsigner(1) | 23 Jun 2004 | jarsigner(1) | ||||
/usr/bin/java | Mach-O universal binary with 2 architectures | Apple | java(1) | java(1) | 23 June 2004 | java(1) | ||||
/usr/bin/javac | Mach-O universal binary with 2 architectures | Apple | javac(1) | javac(1) | 05 March 2002 | javac(1) | ||||
/usr/bin/javadoc | Mach-O universal binary with 2 architectures | Apple | javadoc(1) | javadoc(1) | 10 March 2001 | javadoc(1) | ||||
/usr/bin/javah | Mach-O universal binary with 2 architectures | Apple | javah(1) | javah(1) | 13 June 2000 | javah(1) | ||||
/usr/bin/javap | Mach-O universal binary with 2 architectures | Apple | javap(1) | javap(1) | 13 June 2000 | javap(1) | ||||
/usr/bin/javapackager | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/javaws | Mach-O universal binary with 2 architectures | Apple | javaws(1) | javaws(1) | 09 April 2004 | javaws(1) | ||||
/usr/bin/jcmd | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jconsole | Mach-O universal binary with 2 architectures | Apple | jconsole(1) | jconsole(1) | 06 Feb 2004 | jconsole(1) | ||||
/usr/bin/jcontrol | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jdb | Mach-O universal binary with 2 architectures | Apple | jdb(1) | jdb(1) | 12 Nov 2001 | jdb(1) | ||||
/usr/bin/jdeps | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jhat | Mach-O universal binary with 2 architectures | Apple | jhat(1) | jhat(1) | 05 Aug 2006 | jhat(1) | ||||
/usr/bin/jhsdb | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jimage | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jinfo | Mach-O universal binary with 2 architectures | Apple | jinfo(1) | jinfo(1) | 13 June 2004 | jinfo(1) | ||||
/usr/bin/jjs | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jmap | Mach-O universal binary with 2 architectures | Apple | jmap(1) | jmap(1) | 13 June 2004 | jmap(1) | ||||
/usr/bin/jmc | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/jobs | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/join | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | JOIN(1) | BSD General Commands Manual | JOIN(1) | BSD | July 5, 2004 | BSD | |
/usr/bin/jot | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | JOT(1) | BSD General Commands Manual | JOT(1) | BSD | February 19, 2010 | BSD | |
/usr/bin/jps | Mach-O universal binary with 2 architectures | Apple | jps(1) | jps(1) | 13 June 2004 | jps(1) | ||||
/usr/bin/jrunscript | Mach-O universal binary with 2 architectures | Apple | jrunscript(1) | jrunscript(1) | 06 Aug 2006 | jrunscript(1) | ||||
/usr/bin/jsadebugd | Mach-O universal binary with 2 architectures | Apple | jsadebugd(1) | jsadebugd(1) | 13 June 2004 | jsadebugd(1) | ||||
/usr/bin/jshell | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/json_pp | a /usr/bin/perl script text executable, ASCII text | script | JSON_PP(1) | Perl Programmers Reference Guide | JSON_PP(1) | perl v5.24.0 | 2016-11-12 | JSON_PP(1) | ||
/usr/bin/json_pp5.16 | a /usr/bin/perl5.16 script text executable, UTF-8 Unicode text | script | JSON_PP(1) | Perl Programmers Reference Guide | JSON_PP(1) | perl v5.16.3 | 2016-07-30 | JSON_PP(1) | ||
/usr/bin/json_pp5.18 | a /usr/bin/perl5.18 script text executable, UTF-8 Unicode text | script | JSON_PP(1) | Perl Programmers Reference Guide | JSON_PP(1) | perl v5.18.2 | 2016-07-30 | JSON_PP(1) | ||
/usr/bin/jstack | Mach-O universal binary with 2 architectures | Apple | jstack(1) | jstack(1) | 13 June 2004 | jstack(1) | ||||
/usr/bin/jstat | Mach-O universal binary with 2 architectures | Apple | jstat(1) | jstat(1) | 13 June 2004 | jstat(1) | ||||
/usr/bin/jstatd | Mach-O universal binary with 2 architectures | Apple | jstatd(1) | jstatd(1) | 13 June 2004 | jstatd(1) | ||||
/usr/bin/jvisualvm | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/kcc | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KCC(1) | BSD General Commands Manual | KCC(1) | HEIMDAL | Sep 30, 2011 | HEIMDAL | |
/usr/bin/kdestroy | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KDESTROY(1) | BSD General Commands Manual | KDESTROY(1) | HEIMDAL | April 27, 2006 | HEIMDAL | |
/usr/bin/kextutil | Mach-O universal binary with 2 architectures | Apple | ||||||||
/usr/bin/keytool | Mach-O universal binary with 2 architectures | Apple | keytool(1) | keytool(1) | 22 June 2004 | keytool(1) | ||||
/usr/bin/kgetcred | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KGETCRED(1) | BSD General Commands Manual | KGETCRED(1) | HEIMDAL | March 12, 2004 | HEIMDAL | |
/usr/bin/kill.d | a /usr/sbin/dtrace -qs script text executable, ASCII text | script | kill.d(1m) | USER COMMANDS | kill.d(1m) | version 0.90 | May 14, 2005 | kill.d(1m) | ||
/usr/bin/killall | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | KILLALL(1) | BSD General Commands Manual | KILLALL(1) | BSD | January 26, 2004 | BSD | |
/usr/bin/kinit | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KINIT(1) | BSD General Commands Manual | KINIT(1) | HEIMDAL | April 25, 2006 | HEIMDAL | |
/usr/bin/klist | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KLIST(1) | BSD General Commands Manual | KLIST(1) | HEIMDAL | October 6, 2005 | HEIMDAL | |
/usr/bin/kpasswd | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KPASSWD(1) | BSD General Commands Manual | KPASSWD(1) | HEIMDAL | January 5, 2005 | HEIMDAL | |
/usr/bin/krb5-config | POSIX shell script text executable, ISO-8859 text | script | KRB5-CONFIG(1) | BSD General Commands Manual | KRB5-CONFIG(1) | HEIMDAL | November 30, 2000 | HEIMDAL | ||
/usr/bin/kswitch | Mach-O 64-bit executable x86_64 | Heimdal | Apple,Copyright | KSWITCH(SECTION) | LOCAL | KSWITCH(SECTION) | OPERATING_SYSTEM | Augusti 25, 2009 | OPERATING_SYSTEM | |
/usr/bin/lam | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | LAM(1) | BSD General Commands Manual | LAM(1) | BSD | August 12, 2004 | BSD | |
/usr/bin/last | Mach-O 64-bit executable x86_64 | adv_cmds | LAST(1) | BSD General Commands Manual | LAST(1) | 4th Berkeley Distribution | June 6, 1993 | 4th Berkeley Distribution | ||
/usr/bin/lastcomm | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | LASTCOMM(1) | BSD General Commands Manual | LASTCOMM(1) | BSD | December 22, 2006 | BSD | |
/usr/bin/lastwords | Korn shell script text executable, ASCII text | script | lastwords(1m) | USER COMMANDS | lastwords(1m) | version 0.70 | Jun 08, 2005 | lastwords(1m) | ||
/usr/bin/latency | Mach-O universal binary with 2 architectures | system_cmds | LATENCY(1) | BSD General Commands Manual | LATENCY(1) | Mac OS X | March 28, 2000 | Mac OS X | ||
/usr/bin/layerutil | Mach-O 64-bit executable x86_64 | CoreUI | Apple,Copyright | layerutil(1) | BSD General Commands Manual | layerutil(1) | Darwin | Jul 21, 2016 | Darwin | |
/usr/bin/ld | Mach-O 64-bit executable x86_64 | Shim | ld(1) | BSD General Commands Manual | ld(1) | Darwin | March 7, 2011 | Darwin | ||
/usr/bin/ldapadd | Mach-O 64-bit executable x86_64 | Apple | LDAPMODIFY(1) | LDAPMODIFY(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPMODIFY(1) | |||
/usr/bin/ldapcompare | Mach-O 64-bit executable x86_64 | Apple | LDAPCOMPARE(1) | LDAPCOMPARE(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPCOMPARE(1) | |||
/usr/bin/ldapdelete | Mach-O 64-bit executable x86_64 | Apple | LDAPDELETE(1) | LDAPDELETE(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPDELETE(1) | |||
/usr/bin/ldapexop | Mach-O 64-bit executable x86_64 | Apple | LDAPEXOP(1) | LDAPEXOP(1) | LDAPEXOP(1) | |||||
/usr/bin/ldapmodify | Mach-O 64-bit executable x86_64 | Apple | LDAPMODIFY(1) | LDAPMODIFY(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPMODIFY(1) | |||
/usr/bin/ldapmodrdn | Mach-O 64-bit executable x86_64 | Apple | LDAPMODRDN(1) | LDAPMODRDN(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPMODRDN(1) | |||
/usr/bin/ldappasswd | Mach-O 64-bit executable x86_64 | Apple | LDAPPASSWD(1) | LDAPPASSWD(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPPASSWD(1) | |||
/usr/bin/ldapsearch | Mach-O 64-bit executable x86_64 | Apple | LDAPSEARCH(1) | LDAPSEARCH(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPSEARCH(1) | |||
/usr/bin/ldapurl | Mach-O 64-bit executable x86_64 | Apple | LDAPURL(1) | LDAPURL(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPURL(1) | |||
/usr/bin/ldapwhoami | Mach-O 64-bit executable x86_64 | Apple | LDAPWHOAMI(1) | LDAPWHOAMI(1) | OpenLDAP 2.4.28 | 2011/11/24 | LDAPWHOAMI(1) | |||
/usr/bin/leaks | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | leaks(1) | BSD General Commands Manual | leaks(1) | BSD | June 14, 2016 | BSD | |
/usr/bin/leaks32 | Mach-O executable i386 | SamplingTools | Apple | leaks(1) | BSD General Commands Manual | leaks(1) | BSD | June 14, 2016 | BSD | |
/usr/bin/leave | Mach-O 64-bit executable x86_64 | misc_cmds | FreeBSD | LEAVE(1) | BSD General Commands Manual | LEAVE(1) | BSD | April 28, 1995 | BSD | |
/usr/bin/less | Mach-O 64-bit executable x86_64 | less | Unix,Copyright | LESS(1) | LESS(1) | Version 458: 04 Apr 2013 | LESS(1) | |||
/usr/bin/lessecho | Mach-O 64-bit executable x86_64 | less | LESSECHO(1) | LESSECHO(1) | Version 458: 04 Apr 2013 | LESSECHO(1) | ||||
/usr/bin/lex | Mach-O 64-bit executable x86_64 | Shim | FLEX(1) | User Commands | FLEX(1) | flex 2.5.35 | February 2008 | FLEX(1) | ||
/usr/bin/libnetcfg | a /usr/bin/perl script text executable, ASCII text | script | LIBNETCFG(1) | Perl Programmers Reference Guide | LIBNETCFG(1) | perl v5.24.0 | 2016-11-12 | LIBNETCFG(1) | ||
/usr/bin/libnetcfg5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | LIBNETCFG(1) | Perl Programmers Reference Guide | LIBNETCFG(1) | perl v5.16.3 | 2016-07-30 | LIBNETCFG(1) | ||
/usr/bin/libnetcfg5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | LIBNETCFG(1) | Perl Programmers Reference Guide | LIBNETCFG(1) | perl v5.18.2 | 2016-07-30 | LIBNETCFG(1) | ||
/usr/bin/libtool | Mach-O 64-bit executable x86_64 | Shim | LIBTOOL(1) | LIBTOOL(1) | Apple Inc. | January 27, 2014 | LIBTOOL(1) | |||
/usr/bin/lipo | Mach-O 64-bit executable x86_64 | Shim | LIPO(1) | LIPO(1) | Apple Computer, Inc. | September 12, 2006 | LIPO(1) | |||
/usr/bin/lkbib | Mach-O 64-bit executable x86_64 | Apple,GNU | LKBIB(1) | LKBIB(1) | Groff Version 1.19.2 | 24 November 2004 | LKBIB(1) | |||
/usr/bin/lldb | Mach-O 64-bit executable x86_64 | Shim | LLDB(1) | BSD General Commands Manual | LLDB(1) | BSD | December 16, 2015 | BSD | ||
/usr/bin/llvm-g++ | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/llvm-gcc | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/loads.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | loads.d(1m) | USER COMMANDS | loads.d(1m) | version 0.90 | Jun 10, 2005 | loads.d(1m) | ||
/usr/bin/locale | Mach-O 64-bit executable x86_64 | adv_cmds | LOCALE(1) | BSD General Commands Manual | LOCALE(1) | Darwin | August 27, 2004 | Darwin | ||
/usr/bin/localedef | a /usr/bin/perl -w script text executable, ASCII text, with very long lines | script | LOCALEDEF(1) | BSD General Commands Manual | LOCALEDEF(1) | Darwin | September 9, 2004 | Darwin | ||
/usr/bin/locate | Mach-O 64-bit executable x86_64 | shell_cmds | Apple | LOCATE(1) | BSD General Commands Manual | LOCATE(1) | BSD | August 17, 2006 | BSD | |
/usr/bin/lockstat | Mach-O 64-bit executable x86_64 | Apple | LOCKSTAT(1M) | LOCKSTAT(1M) | Jan 27, 2014 | LOCKSTAT(1M) | ||||
/usr/bin/log | Mach-O 64-bit executable x86_64 | libtrace | Apple,Copyright | log(1) | BSD General Commands Manual | log(1) | Darwin | May 10, 2016 | Darwin | |
/usr/bin/logger | Mach-O 64-bit executable x86_64 | FreeBSD,Copyright | LOGGER(1) | BSD General Commands Manual | LOGGER(1) | 4.3 Berkeley Distribution | June 6, 1993 | 4.3 Berkeley Distribution | ||
/usr/bin/login | setuid Mach-O universal binary with 2 architectures | system_cmds | Apple | LOGIN(1) | BSD General Commands Manual | LOGIN(1) | BSD | September 13, 2006 | BSD | |
/usr/bin/logname | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | LOGNAME(1) | BSD General Commands Manual | LOGNAME(1) | 4.4BSD | June 9, 1993 | 4.4BSD | |
/usr/bin/look | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | LOOK(1) | BSD General Commands Manual | LOOK(1) | BSD | July 17, 2004 | BSD | |
/usr/bin/lookbib | Mach-O 64-bit executable x86_64 | Apple,GNU | LOOKBIB(1) | LOOKBIB(1) | Groff Version 1.19.2 | 24 November 2004 | LOOKBIB(1) | |||
/usr/bin/lorder | Mach-O 64-bit executable x86_64 | Shim | LORDER(1) | BSD General Commands Manual | LORDER(1) | BSD | April 28, 1995 | BSD | ||
/usr/bin/lp | Mach-O 64-bit executable x86_64 | lp(1) | Apple Inc. | lp(1) | 2 May 2016 | CUPS | lp(1) | |||
/usr/bin/lpoptions | Mach-O 64-bit executable x86_64 | lpoptions(1) | Apple Inc. | lpoptions(1) | 12 June 2014 | CUPS | lpoptions(1) | |||
/usr/bin/lpq | Mach-O 64-bit executable x86_64 | lpq(1) | Apple Inc. | lpq(1) | 12 June 2014 | CUPS | lpq(1) | |||
/usr/bin/lpr | Mach-O 64-bit executable x86_64 | lpr(1) | Apple Inc. | lpr(1) | 2 May 2016 | CUPS | lpr(1) | |||
/usr/bin/lprm | Mach-O 64-bit executable x86_64 | lprm(1) | Apple Inc. | lprm(1) | 22 May 2014 | CUPS | lprm(1) | |||
/usr/bin/lpstat | Mach-O 64-bit executable x86_64 | lpstat(1) | Apple Inc. | lpstat(1) | 12 June 2014 | CUPS | lpstat(1) | |||
/usr/bin/lsappinfo | Mach-O 64-bit executable x86_64 | LaunchServices | Apple | |||||||
/usr/bin/lsbom | Mach-O 64-bit executable x86_64 | BomCmds | ||||||||
/usr/bin/lskq | Mach-O universal binary with 2 architectures | system_cmds | lskq(1) | BSD General Commands Manual | lskq(1) | Mac OS X | Apr 20, 2015 | Mac OS X | ||
/usr/bin/lsm | Mach-O 64-bit executable x86_64 | Apple | LSM(1) | Latent Semantic Mapping | LSM(1) | 1.0 | 2011-11-07 | LSM(1) | ||
/usr/bin/lsmp | Mach-O universal binary with 2 architectures | system_cmds | Apple | |||||||
/usr/bin/lsvfs | Mach-O 64-bit executable x86_64 | adv_cmds | LSVFS(1) | BSD General Commands Manual | LSVFS(1) | January 4, 2003 | ||||
/usr/bin/lwp-download | a /usr/bin/perl script text executable, ASCII text | script | LWP-DOWNLOAD(1) | User Contributed Perl Documentation | LWP-DOWNLOAD(1) | perl v5.18.2 | 2012-01-13 | LWP-DOWNLOAD(1) | ||
/usr/bin/lwp-download5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | LWP-DOWNLOAD(1) | User Contributed Perl Documentation | LWP-DOWNLOAD(1) | perl v5.16.3 | 2012-01-13 | LWP-DOWNLOAD(1) | ||
/usr/bin/lwp-download5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | LWP-DOWNLOAD(1) | User Contributed Perl Documentation | LWP-DOWNLOAD(1) | perl v5.18.2 | 2012-01-13 | LWP-DOWNLOAD(1) | ||
/usr/bin/lwp-dump | a /usr/bin/perl script text executable, ASCII text | script | LWP-DUMP(1) | User Contributed Perl Documentation | LWP-DUMP(1) | perl v5.18.2 | 2012-01-13 | LWP-DUMP(1) | ||
/usr/bin/lwp-dump5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | LWP-DUMP(1) | User Contributed Perl Documentation | LWP-DUMP(1) | perl v5.16.3 | 2012-01-13 | LWP-DUMP(1) | ||
/usr/bin/lwp-dump5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | LWP-DUMP(1) | User Contributed Perl Documentation | LWP-DUMP(1) | perl v5.18.2 | 2012-01-13 | LWP-DUMP(1) | ||
/usr/bin/lwp-mirror | a /usr/bin/perl script text executable, ASCII text | script | LWP-MIRROR(1) | User Contributed Perl Documentation | LWP-MIRROR(1) | perl v5.18.2 | 2013-03-11 | LWP-MIRROR(1) | ||
/usr/bin/lwp-mirror5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | LWP-MIRROR(1) | User Contributed Perl Documentation | LWP-MIRROR(1) | perl v5.16.3 | 2012-01-13 | LWP-MIRROR(1) | ||
/usr/bin/lwp-mirror5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | LWP-MIRROR(1) | User Contributed Perl Documentation | LWP-MIRROR(1) | perl v5.18.2 | 2013-03-11 | LWP-MIRROR(1) | ||
/usr/bin/lwp-request | a /usr/bin/perl script text executable, ASCII text | script | LWP-REQUEST(1) | User Contributed Perl Documentation | LWP-REQUEST(1) | perl v5.18.2 | 2012-02-11 | LWP-REQUEST(1) | ||
/usr/bin/lwp-request5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | LWP-REQUEST(1) | User Contributed Perl Documentation | LWP-REQUEST(1) | perl v5.16.3 | 2012-02-11 | LWP-REQUEST(1) | ||
/usr/bin/lwp-request5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | LWP-REQUEST(1) | User Contributed Perl Documentation | LWP-REQUEST(1) | perl v5.18.2 | 2012-02-11 | LWP-REQUEST(1) | ||
/usr/bin/m4 | Mach-O 64-bit executable x86_64 | Shim | M4(1) | User Commands | M4(1) | FSF | August 2006 | M4(1) | ||
/usr/bin/macbinary | Mach-O 64-bit executable x86_64 | Apple,Copyright | APPLESINGLE(1) | BSD General Commands Manual | APPLESINGLE(1) | Darwin | 14 November 2005 | Darwin | ||
/usr/bin/macerror | a /usr/bin/perl script text executable, ASCII text | script | MACERROR(1) | User Contributed Perl Documentation | MACERROR(1) | perl v5.18.2 | 2014-01-03 | MACERROR(1) | ||
/usr/bin/macerror5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | MACERROR(1) | User Contributed Perl Documentation | MACERROR(1) | perl v5.16.3 | 2012-07-05 | MACERROR(1) | ||
/usr/bin/macerror5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | MACERROR(1) | User Contributed Perl Documentation | MACERROR(1) | perl v5.18.2 | 2014-01-03 | MACERROR(1) | ||
/usr/bin/machine | Mach-O universal binary with 2 architectures | system_cmds | MACHINE(1) | BSD General Commands Manual | MACHINE(1) | BSD | July 26, 1991 | BSD | ||
/usr/bin/mail | Mach-O 64-bit executable x86_64 | mail_cmds | FreeBSD | MAIL(1) | BSD General Commands Manual | MAIL(1) | BSD | February 29, 2004 | BSD | |
/usr/bin/mailq | Mach-O 64-bit executable x86_64 | Berkeley,Unix | SENDMAIL(1) | SENDMAIL(1) | SENDMAIL(1) | |||||
/usr/bin/mailx | Mach-O 64-bit executable x86_64 | mail_cmds | FreeBSD | MAIL(1) | BSD General Commands Manual | MAIL(1) | BSD | February 29, 2004 | BSD | |
/usr/bin/make | Mach-O 64-bit executable x86_64 | Shim | MAKE(1) | LOCAL USER COMMANDS | MAKE(1) | GNU | 22 August 1989 | MAKE(1) | ||
/usr/bin/makeinfo | Mach-O 64-bit executable x86_64 | GNU,Copyright | MAKEINFO(1) | User Commands | MAKEINFO(1) | makeinfo 4.8 | December 2004 | MAKEINFO(1) | ||
/usr/bin/malloc_history | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | malloc_history(1) | BSD General Commands Manual | malloc_history(1) | BSD | Mar. 16, 2013 | BSD | |
/usr/bin/malloc_history32 | Mach-O executable i386 | SamplingTools | Apple | malloc_history(1) | BSD General Commands Manual | malloc_history(1) | BSD | Mar. 16, 2013 | BSD | |
/usr/bin/man | Mach-O 64-bit executable x86_64 | man(1) | man(1) | September 19, 2005 | man(1) | |||||
/usr/bin/manpath | Mach-O 64-bit executable x86_64 | man(1) | man(1) | September 19, 2005 | man(1) | |||||
/usr/bin/mcxquery | Mach-O 64-bit executable x86_64 | Apple | mcxquery(1) | BSD General Commands Manual | mcxquery(1) | MacOSX | November 30, 2010 | MacOSX | ||
/usr/bin/mcxrefresh | Mach-O 64-bit executable x86_64 | Apple | mcxrefresh(1) | BSD General Commands Manual | mcxrefresh(1) | MacOSX | October 27, 2009 | MacOSX | ||
/usr/bin/mddiagnose | Mach-O 64-bit executable x86_64 | tools | Apple | |||||||
/usr/bin/mdfind | Mach-O 64-bit executable x86_64 | tools | mdfind(1) | BSD General Commands Manual | mdfind(1) | Mac OS X | June 10, 2004 | Mac OS X | ||
/usr/bin/mdimport | Mach-O 64-bit executable x86_64 | tools | FreeBSD,OpenBSD,FreeBSD,Apple,Unix,Linux,GNU,FSF | mdimport(1) | BSD General Commands Manual | mdimport(1) | Mac OS X | Oct 27, 2004 | Mac OS X | |
/usr/bin/mdimport32 | Mach-O executable i386 | tools | FreeBSD,OpenBSD,FreeBSD,Apple,Unix,Linux,GNU,FSF | mdimport(1) | BSD General Commands Manual | mdimport(1) | Mac OS X | Oct 27, 2004 | Mac OS X | |
/usr/bin/mdls | Mach-O 64-bit executable x86_64 | tools | MDLS(1) | BSD General Commands Manual | MDLS(1) | Mac OS X | June 3, 2004 | Mac OS X | ||
/usr/bin/mdutil | Mach-O 64-bit executable x86_64 | tools | Apple | mdutil(1) | BSD General Commands Manual | mdutil(1) | Mac OS X | September 1, 2005 | Mac OS X | |
/usr/bin/memory_pressure | Mach-O universal binary with 2 architectures | system_cmds | MEMORY_PRESSURE(1) | BSD General Commands Manual | MEMORY_PRESSURE(1) | Mac OS X | Mar 7, 2013 | Mac OS X | ||
/usr/bin/MergePef | Mach-O 64-bit executable x86_64 | Shim | MERGEPEF(1) | BSD General Commands Manual | MERGEPEF(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/mesg | Mach-O 64-bit executable x86_64 | basic_cmds | FreeBSD | MESG(1) | BSD General Commands Manual | MESG(1) | BSD | May 5, 2002 | BSD | |
/usr/bin/mib2c | a /usr/bin/perl script text executable, ASCII text, with very long lines | script | MIB2C(1) | Net-SNMP | MIB2C(1) | V5.6.2.1 | 05 Apr 2010 | MIB2C(1) | ||
/usr/bin/mib2c-update | POSIX shell script text executable, ASCII text | script | mib2c-update(1) | Net-SNMP | mib2c-update(1) | V5.6.2.1 | 07 Apr 2010 | mib2c-update(1) | ||
/usr/bin/mig | Mach-O 64-bit executable x86_64 | Shim | MIG(1) | MIG(1) | Apple Computer, Inc. | Nov 20, 2009 | MIG(1) | |||
/usr/bin/mkbom | Mach-O 64-bit executable x86_64 | BomCmds | ||||||||
/usr/bin/mkdep | Mach-O 64-bit executable x86_64 | Shim | MKDEP(1) | BSD General Commands Manual | MKDEP(1) | 4.2 Berkeley Distribution | June 6, 1993 | 4.2 Berkeley Distribution | ||
/usr/bin/mkfifo | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Unix,Copyright | MKFIFO(1) | BSD General Commands Manual | MKFIFO(1) | 4.4BSD | January 5, 1994 | 4.4BSD | |
/usr/bin/mklocale | Mach-O 64-bit executable x86_64 | adv_cmds | FreeBSD | MKLOCALE(1) | BSD General Commands Manual | MKLOCALE(1) | BSD | October 17, 2004 | BSD | |
/usr/bin/mktemp | Mach-O 64-bit executable x86_64 | shell_cmds | MKTEMP(1) | BSD General Commands Manual | MKTEMP(1) | BSD | December 30, 2005 | BSD | ||
/usr/bin/mmroff | a /usr/bin/perl script text executable, ASCII text | script | MMROFF(1) | MMROFF(1) | Groff Version 1.19.2 | 25 September 2015 | MMROFF(1) | |||
/usr/bin/mnthome | Mach-O 64-bit executable x86_64 | mnthome(1) | BSD General Commands Manual | mnthome(1) | Mac OS X | August 4, 2004 | Mac OS X | |||
/usr/bin/moo-outdated | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/moo-outdated5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/moose-outdated | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/moose-outdated5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/moose-outdated5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/more | Mach-O 64-bit executable x86_64 | less | Unix,Copyright | LESS(1) | LESS(1) | Version 458: 04 Apr 2013 | LESS(1) | |||
/usr/bin/mp2bug | a /usr/bin/perl script text executable, ASCII text | script | MP2BUG(1) | BSD General Commands Manual | MP2BUG(1) | BSD | January 23, 2008 | BSD | ||
/usr/bin/msgs | Mach-O 64-bit executable x86_64 | mail_cmds | FreeBSD | MSGS(1) | BSD General Commands Manual | MSGS(1) | BSD | April 28, 1995 | BSD | |
/usr/bin/MvMac | Mach-O 64-bit executable x86_64 | Shim | MVMAC(1) | BSD General Commands Manual | MVMAC(1) | Mac OS X | Oct 6, 2001 | Mac OS X | ||
/usr/bin/nano | Mach-O 64-bit executable x86_64 | nano | GNU,Copyright | NANO(1) | NANO(1) | October 28, 2006 | version 2.0.0 | NANO(1) | ||
/usr/bin/nasm | Mach-O 64-bit executable x86_64 | Shim | NASM(1) | NASM(1) | The Netwide Assembler Project | NASM(1) | ||||
/usr/bin/native2ascii | Mach-O universal binary with 2 architectures | Apple | native2ascii(1) | native2ascii(1) | 22 Jun 2004 | native2ascii(1) | ||||
/usr/bin/nbdst | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/nc | Mach-O 64-bit executable x86_64 | netcat | Apple,Unix | NC(1) | BSD General Commands Manual | NC(1) | BSD | June 25, 2001 | BSD | |
/usr/bin/ncal | Mach-O 64-bit executable x86_64 | misc_cmds | FreeBSD | CAL(1) | BSD General Commands Manual | CAL(1) | BSD | November 23, 2004 | BSD | |
/usr/bin/ncctl | Mach-O 64-bit executable x86_64 | NCCTL(1) | BSD General Commands Manual | NCCTL(1) | BSD | January 14, 2015 | BSD | |||
/usr/bin/ncdestroy | Mach-O 64-bit executable x86_64 | NCCTL(1) | BSD General Commands Manual | NCCTL(1) | BSD | January 14, 2015 | BSD | |||
/usr/bin/ncinit | Mach-O 64-bit executable x86_64 | NCCTL(1) | BSD General Commands Manual | NCCTL(1) | BSD | January 14, 2015 | BSD | |||
/usr/bin/nclist | Mach-O 64-bit executable x86_64 | NCCTL(1) | BSD General Commands Manual | NCCTL(1) | BSD | January 14, 2015 | BSD | |||
/usr/bin/ncurses5.4-config | POSIX shell script text executable, ASCII text | script | ncurses5.4-config(1) | BSD General Commands Manual | ncurses5.4-config(1) | BSD | January 13, 2009 | BSD | ||
/usr/bin/ndisasm | Mach-O 64-bit executable x86_64 | Shim | NDISASM(1) | NDISASM(1) | The Netwide Assembler Project | NDISASM(1) | ||||
/usr/bin/neqn | POSIX shell script text executable, ASCII text | script | NEQN(1) | NEQN(1) | Groff Version 1.19.2 | 27 June 2001 | NEQN(1) | |||
/usr/bin/net-server | a /usr/bin/perl script text executable, ASCII text | script | NET-SERVER(1) | User Contributed Perl Documentation | NET-SERVER(1) | perl v5.18.2 | 2012-06-12 | NET-SERVER(1) | ||
/usr/bin/net-server5.16 | a /usr/bin/env perl5.16 script text executable, ASCII text | script | NET-SERVER(1) | User Contributed Perl Documentation | NET-SERVER(1) | perl v5.16.3 | 2012-06-12 | NET-SERVER(1) | ||
/usr/bin/net-server5.18 | a /usr/bin/env perl5.18 script text executable, ASCII text | script | NET-SERVER(1) | User Contributed Perl Documentation | NET-SERVER(1) | perl v5.18.2 | 2012-06-12 | NET-SERVER(1) | ||
/usr/bin/net-snmp-cert | a /usr/bin/perl script text executable, UTF-8 Unicode text, with very long lines | script | ||||||||
/usr/bin/net-snmp-config | POSIX shell script text executable, ASCII text, with very long lines | script | net-snmp-config(1) | Net-SNMP | net-snmp-config(1) | V5.6.2.1 | 16 Nov 2006 | net-snmp-config(1) | ||
/usr/bin/net-snmp-create-v3-user | POSIX shell script text executable, ASCII text | script | net-snmp-create-v3-user(1) | Net-SNMP | net-snmp-create-v3-user(1) | V5.6.2.1 | 17 Sep 2008 | net-snmp-create-v3-user(1) | ||
/usr/bin/nettop | Mach-O 64-bit executable x86_64 | Apple | nettop(1) | BSD General Commands Manual | nettop(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/newaliases | Mach-O 64-bit executable x86_64 | Berkeley,Unix | SENDMAIL(1) | SENDMAIL(1) | SENDMAIL(1) | |||||
/usr/bin/newgrp | setuid Mach-O universal binary with 2 architectures | system_cmds | NEWGRP(1) | BSD General Commands Manual | NEWGRP(1) | BSD | May 23, 2002 | BSD | ||
/usr/bin/newproc.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | newproc.d(1m) | USER COMMANDS | newproc.d(1m) | version 1.00 | May 15, 2005 | newproc.d(1m) | ||
/usr/bin/nfsstat | Mach-O 64-bit executable x86_64 | NFSSTAT(1) | BSD General Commands Manual | NFSSTAT(1) | 4.4BSD | January 11, 2011 | 4.4BSD | |||
/usr/bin/nice | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | NICE(1) | BSD General Commands Manual | NICE(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/nl | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,FreeBSD,Copyright | NL(1) | BSD General Commands Manual | NL(1) | BSD | January 26, 2005 | BSD | |
/usr/bin/nm | Mach-O 64-bit executable x86_64 | Shim | NM(1) | NM(1) | Apple, Inc. | May 27, 2015 | NM(1) | |||
/usr/bin/nmedit | Mach-O 64-bit executable x86_64 | Shim | NMEDIT(1) | NMEDIT(1) | Apple Inc. | May 29, 2007 | NMEDIT(1) | |||
/usr/bin/nohup | Mach-O 64-bit executable x86_64 | shell_cmds | NOHUP(1) | BSD General Commands Manual | NOHUP(1) | BSD | July 19, 2001 | BSD | ||
/usr/bin/notifyutil | Mach-O 64-bit executable x86_64 | Libnotify | notifyutil(1) | BSD General Commands Manual | notifyutil(1) | Mac OS X | November 4, 2011 | Mac OS X | ||
/usr/bin/nroff | POSIX shell script text executable, ASCII text | script | NROFF(1) | NROFF(1) | Groff Version 1.19.2 | 12 April 2005 | NROFF(1) | |||
/usr/bin/nscurl | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/nslookup | Mach-O 64-bit executable x86_64 | Apple,Unix | NSLOOKUP(1) | BIND9 | NSLOOKUP(1) | BIND9 | Jun 30, 2000 | NSLOOKUP(1) | ||
/usr/bin/nsupdate | Mach-O 64-bit executable x86_64 | Apple,Unix | NSUPDATE(1) | BIND9 | NSUPDATE(1) | BIND9 | Aug 25, 2009 | NSUPDATE(1) | ||
/usr/bin/ntp-keygen | Mach-O 64-bit executable x86_64 | ntp | Copyright | NTP_KEYGEN(1ntp-keygenmdoc) | User | NTP_KEYGEN(1ntp-keygenmdoc) | BSD | January 20 2016 | BSD | |
/usr/bin/ntpq | Mach-O 64-bit executable x86_64 | ntp | Apple,Unix,Copyright | NTPQ(1ntpqmdoc) | User | NTPQ(1ntpqmdoc) | BSD | January 20 2016 | BSD | |
/usr/bin/objdump | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/od | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Apple | OD(1) | BSD General Commands Manual | OD(1) | BSD | July 11, 2004 | BSD | |
/usr/bin/odutil | Mach-O 64-bit executable x86_64 | odutilities | Apple | odutil(1) | BSD General Commands Manual | odutil(1) | BSD | Jan 18, 2012 | BSD | |
/usr/bin/open | Mach-O 64-bit executable x86_64 | AKCmds | Apple | OPEN(1) | BSD General Commands Manual | OPEN(1) | Mac OS X | February 10, 2004 | Mac OS X | |
/usr/bin/opendiff | Mach-O 64-bit executable x86_64 | Shim | opendiff(1) | BSD General Commands Manual | opendiff(1) | Mac OS X | August 3, 2004 | Mac OS X | ||
/usr/bin/opensnoop | POSIX shell script text executable, ASCII text | script | opensnoop(1m) | USER COMMANDS | opensnoop(1m) | version 1.60 | Jan 12, 2006 | opensnoop(1m) | ||
/usr/bin/openssl | Mach-O universal binary with 2 architectures | Darwin,Apple,Unix,GNU | OPENSSL(1) | OpenSSL | OPENSSL(1) | 0.9.8 | 2016-10-04 | OPENSSL(1) | ||
/usr/bin/orbd | Mach-O universal binary with 2 architectures | Apple | orbd(1) | orbd(1) | 10 March 2001 | orbd(1) | ||||
/usr/bin/osacompile | Mach-O 64-bit executable x86_64 | Apple | OSACOMPILE(1) | BSD General Commands Manual | OSACOMPILE(1) | Mac OS X | November 12, 2008 | Mac OS X | ||
/usr/bin/osadecompile | Mach-O 64-bit executable x86_64 | OSADECOMPILE(1) | BSD General Commands Manual | OSADECOMPILE(1) | Mac OS X | Aug 15, 2006 | Mac OS X | |||
/usr/bin/osalang | Mach-O 64-bit executable x86_64 | OSALANG(1) | BSD General Commands Manual | OSALANG(1) | Mac OS X | May 1, 2001 | Mac OS X | |||
/usr/bin/osascript | Mach-O 64-bit executable x86_64 | Apple | OSASCRIPT(1) | BSD General Commands Manual | OSASCRIPT(1) | Mac OS X | April 24, 2014 | Mac OS X | ||
/usr/bin/otool | Mach-O 64-bit executable x86_64 | Shim | OTOOL(1) | OTOOL(1) | Apple Inc. | March 19, 2015 | OTOOL(1) | |||
/usr/bin/pack200 | Mach-O universal binary with 2 architectures | Apple | pack200(1) | pack200(1) | 14 July 2004 | pack200(1) | ||||
/usr/bin/package-stash-conflicts | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/package-stash-conflicts5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/package-stash-conflicts5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/pagesize | POSIX shell script text executable, ASCII text | script | PAGESIZE(1) | BSD General Commands Manual | PAGESIZE(1) | BSD | June 6, 1993 | BSD | ||
/usr/bin/pagestuff | Mach-O 64-bit executable x86_64 | Shim | PAGESTUFF(1) | PAGESTUFF(1) | Apple, Inc. | November 2, 2010 | PAGESTUFF(1) | |||
/usr/bin/par.pl | a /usr/bin/perl script text executable, ASCII text | script | PAR(1) | User Contributed Perl Documentation | PAR(1) | perl v5.18.2 | 2013-11-30 | PAR(1) | ||
/usr/bin/par5.16.pl | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/par5.18.pl | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/parl | Mach-O universal binary with 2 architectures | Apple,Perl | PARL(1) | User Contributed Perl Documentation | PARL(1) | perl v5.18.2 | 2012-01-06 | PARL(1) | ||
/usr/bin/parl5.16 | Mach-O universal binary with 2 architectures | BSD,Darwin,Apple,Unix,GNU,Copyright | PARL(1) | User Contributed Perl Documentation | PARL(1) | perl v5.16.3 | 2012-01-06 | PARL(1) | ||
/usr/bin/parl5.18 | Mach-O universal binary with 2 architectures | BSD,Darwin,Apple,Unix,GNU,Copyright | PARL(1) | User Contributed Perl Documentation | PARL(1) | perl v5.18.2 | 2012-01-06 | PARL(1) | ||
/usr/bin/parldyn | Mach-O universal binary with 2 architectures | Apple,Perl | ||||||||
/usr/bin/parldyn5.16 | Mach-O universal binary with 2 architectures | BSD | ||||||||
/usr/bin/parldyn5.18 | Mach-O universal binary with 2 architectures | BSD | ||||||||
/usr/bin/passwd | Mach-O universal binary with 2 architectures | system_cmds | PASSWD(1) | BSD General Commands Manual | PASSWD(1) | Mac OS X | August 18, 2008 | Mac OS X | ||
/usr/bin/paste | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | PASTE(1) | BSD General Commands Manual | PASTE(1) | BSD | June 25, 2004 | BSD | |
/usr/bin/patch | Mach-O 64-bit executable x86_64 | Apple,GNU,Copyright | PATCH(1) | PATCH(1) | GNU | 2003/05/08 | PATCH(1) | |||
/usr/bin/pathchk | Mach-O 64-bit executable x86_64 | file_cmds | PATHCHK(1) | BSD General Commands Manual | PATHCHK(1) | BSD | May 21, 2002 | BSD | ||
/usr/bin/pathopens.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | pathopens.d(1m) | USER COMMANDS | pathopens.d(1m) | version 0.80 | Jun 28, 2005 | pathopens.d(1m) | ||
/usr/bin/pbcopy | Mach-O 64-bit executable x86_64 | AKCmds | PBCOPY(1) | PBCOPY(1) | Apple Computer, Inc. | January 12, 2005 | PBCOPY(1) | |||
/usr/bin/pbpaste | Mach-O 64-bit executable x86_64 | AKCmds | PBCOPY(1) | PBCOPY(1) | Apple Computer, Inc. | January 12, 2005 | PBCOPY(1) | |||
/usr/bin/pcap-config | POSIX shell script text executable, ASCII text | script | PCAP-CONFIG(1) | PCAP-CONFIG(1) | 22 May 2009 | PCAP-CONFIG(1) | ||||
/usr/bin/pcsctest | Mach-O universal binary with 2 architectures | |||||||||
/usr/bin/perl | Mach-O universal binary with 2 architectures | Apple,Perl | PERL(1) | Perl Programmers Reference Guide | PERL(1) | perl v5.24.0 | 2016-05-08 | PERL(1) | ||
/usr/bin/perl5.16 | Mach-O universal binary with 2 architectures | BSD,Apple,Perl | PERL(1) | Perl Programmers Reference Guide | PERL(1) | perl v5.16.3 | 2013-03-04 | PERL(1) | ||
/usr/bin/perl5.18 | Mach-O universal binary with 2 architectures | BSD,Apple,Perl | PERL(1) | Perl Programmers Reference Guide | PERL(1) | perl v5.18.2 | 2014-01-06 | PERL(1) | ||
/usr/bin/perlbug | a /usr/bin/perl script text executable, ASCII text | script | PERLBUG(1) | Perl Programmers Reference Guide | PERLBUG(1) | perl v5.24.0 | 2016-11-12 | PERLBUG(1) | ||
/usr/bin/perlbug5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PERLBUG(1) | Perl Programmers Reference Guide | PERLBUG(1) | perl v5.16.3 | 2016-07-30 | PERLBUG(1) | ||
/usr/bin/perlbug5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PERLBUG(1) | Perl Programmers Reference Guide | PERLBUG(1) | perl v5.18.2 | 2016-07-30 | PERLBUG(1) | ||
/usr/bin/perldoc | a /usr/bin/perl script text executable, ASCII text | script | PERLDOC(1) | Perl Programmers Reference Guide | PERLDOC(1) | perl v5.24.0 | 2016-02-05 | PERLDOC(1) | ||
/usr/bin/perldoc5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PERLDOC(1) | Perl Programmers Reference Guide | PERLDOC(1) | perl v5.16.3 | 2013-03-04 | PERLDOC(1) | ||
/usr/bin/perldoc5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PERLDOC(1) | Perl Programmers Reference Guide | PERLDOC(1) | perl v5.18.2 | 2014-01-06 | PERLDOC(1) | ||
/usr/bin/perlivp | a /usr/bin/perl script text executable, ASCII text | script | PERLIVP(1) | Perl Programmers Reference Guide | PERLIVP(1) | perl v5.24.0 | 2016-11-12 | PERLIVP(1) | ||
/usr/bin/perlivp5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PERLIVP(1) | Perl Programmers Reference Guide | PERLIVP(1) | perl v5.16.3 | 2016-07-30 | PERLIVP(1) | ||
/usr/bin/perlivp5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PERLIVP(1) | Perl Programmers Reference Guide | PERLIVP(1) | perl v5.18.2 | 2016-07-30 | PERLIVP(1) | ||
/usr/bin/perlthanks | a /usr/bin/perl script text executable, ASCII text | script | PERLBUG(1) | Perl Programmers Reference Guide | PERLBUG(1) | perl v5.24.0 | 2016-11-12 | PERLBUG(1) | ||
/usr/bin/perlthanks5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PERLBUG(1) | Perl Programmers Reference Guide | PERLBUG(1) | perl v5.16.3 | 2016-07-30 | PERLBUG(1) | ||
/usr/bin/perlthanks5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PERLBUG(1) | Perl Programmers Reference Guide | PERLBUG(1) | perl v5.18.2 | 2016-07-30 | PERLBUG(1) | ||
/usr/bin/pfbtops | Mach-O 64-bit executable x86_64 | GNU | PFBTOPS(1) | PFBTOPS(1) | Groff Version 1.19.2 | 24 November 2004 | PFBTOPS(1) | |||
/usr/bin/pgrep | Mach-O 64-bit executable x86_64 | adv_cmds | Apple | PKILL(1) | BSD General Commands Manual | PKILL(1) | BSD | February 11, 2010 | BSD | |
/usr/bin/phar | a /usr/bin/php script executable (binary data) | script | PHAR(1) | User Commands | PHAR(1) | The PHP Group | 2016 | PHAR(1) | ||
/usr/bin/phar.phar | a /usr/bin/php script executable (binary data) | script | PHAR(1) | User Commands | PHAR(1) | The PHP Group | 2016 | PHAR(1) | ||
/usr/bin/php | Mach-O 64-bit executable x86_64 | FreeBSD,OpenBSD,FreeBSD,Berkeley,Darwin,Apple,Unix,Linux,GNU,FSF,Copyright | php(1) | Scripting Language | php(1) | The PHP Group | 2016 | php(1) | ||
/usr/bin/php-config | POSIX shell script text executable, ASCII text, with very long lines | script | php-config(1) | Scripting Language | php-config(1) | The PHP Group | 2016 | php-config(1) | ||
/usr/bin/phpize | POSIX shell script text executable, ASCII text | script | phpize(1) | Scripting Language | phpize(1) | The PHP Group | 2016 | phpize(1) | ||
/usr/bin/pic | Mach-O 64-bit executable x86_64 | Apple,GNU | PIC(1) | PIC(1) | Groff Version 1.19.2 | 19 July 2004 | PIC(1) | |||
/usr/bin/pico | Mach-O 64-bit executable x86_64 | nano | GNU,Copyright | NANO(1) | NANO(1) | October 28, 2006 | version 2.0.0 | NANO(1) | ||
/usr/bin/piconv | a /usr/bin/perl script text executable, ASCII text | script | PICONV(1) | Perl Programmers Reference Guide | PICONV(1) | perl v5.24.0 | 2016-11-12 | PICONV(1) | ||
/usr/bin/piconv5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PICONV(1) | Perl Programmers Reference Guide | PICONV(1) | perl v5.16.3 | 2016-07-30 | PICONV(1) | ||
/usr/bin/piconv5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PICONV(1) | Perl Programmers Reference Guide | PICONV(1) | perl v5.18.2 | 2016-07-30 | PICONV(1) | ||
/usr/bin/pidpersec.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | pidpersec.d(1m) | USER COMMANDS | pidpersec.d(1m) | version 0.80 | Jun 09, 2005 | pidpersec.d(1m) | ||
/usr/bin/pkgbuild | Mach-O 64-bit executable x86_64 | pkgbuild | pkgbuild(1) | BSD General Commands Manual | pkgbuild(1) | Mac OS | September 15, 2010 | Mac OS | ||
/usr/bin/pkill | Mach-O 64-bit executable x86_64 | adv_cmds | Apple | PKILL(1) | BSD General Commands Manual | PKILL(1) | BSD | February 11, 2010 | BSD | |
/usr/bin/pl | Mach-O 64-bit executable x86_64 | Foundation | PL(1) | BSD General Commands Manual | PL(1) | Mac OS X | October 23, 2007 | Mac OS X | ||
/usr/bin/pl2pm | a /usr/bin/perl script text executable, ASCII text | script | PL2PM(1) | Perl Programmers Reference Guide | PL2PM(1) | perl v5.24.0 | 2016-11-12 | PL2PM(1) | ||
/usr/bin/pl2pm5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PL2PM(1) | Perl Programmers Reference Guide | PL2PM(1) | perl v5.16.3 | 2016-07-30 | PL2PM(1) | ||
/usr/bin/pl2pm5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PL2PM(1) | Perl Programmers Reference Guide | PL2PM(1) | perl v5.18.2 | 2016-07-30 | PL2PM(1) | ||
/usr/bin/plockstat | Mach-O 64-bit executable x86_64 | Apple | PLOCKSTAT(1) | PLOCKSTAT(1) | 1.0 | July 2007 | PLOCKSTAT(1) | |||
/usr/bin/pluginkit | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/plutil | Mach-O 64-bit executable x86_64 | Foundation | Apple | PLUTIL(1) | BSD General Commands Manual | PLUTIL(1) | Mac OS X | August 30, 2002 | Mac OS X | |
/usr/bin/pmset | Mach-O 64-bit executable x86_64 | Apple | PMSET(1) | BSD General Commands Manual | PMSET(1) | Darwin | November 9, 2012 | Darwin | ||
/usr/bin/pod2html | a /usr/bin/perl script text executable, ASCII text | script | POD2HTML(1) | Perl Programmers Reference Guide | POD2HTML(1) | perl v5.24.0 | 2016-11-12 | POD2HTML(1) | ||
/usr/bin/pod2html5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | POD2HTML(1) | Perl Programmers Reference Guide | POD2HTML(1) | perl v5.16.3 | 2016-07-30 | POD2HTML(1) | ||
/usr/bin/pod2html5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | POD2HTML(1) | Perl Programmers Reference Guide | POD2HTML(1) | perl v5.18.2 | 2016-07-30 | POD2HTML(1) | ||
/usr/bin/pod2latex | a /usr/bin/perl script text executable, ASCII text | script | POD2LATEX(1) | Perl Programmers Reference Guide | POD2LATEX(1) | perl v5.18.2 | 2016-07-30 | POD2LATEX(1) | ||
/usr/bin/pod2latex5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | POD2LATEX(1) | Perl Programmers Reference Guide | POD2LATEX(1) | perl v5.16.3 | 2016-07-30 | POD2LATEX(1) | ||
/usr/bin/pod2latex5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | POD2LATEX(1) | Perl Programmers Reference Guide | POD2LATEX(1) | perl v5.18.2 | 2016-07-30 | POD2LATEX(1) | ||
/usr/bin/pod2man | a /usr/bin/perl script text executable, ASCII text | script | POD2MAN(1) | Perl Programmers Reference Guide | POD2MAN(1) | perl v5.24.0 | 2016-11-12 | POD2MAN(1) | ||
/usr/bin/pod2man5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | POD2MAN(1) | Perl Programmers Reference Guide | POD2MAN(1) | perl v5.16.3 | 2016-07-30 | POD2MAN(1) | ||
/usr/bin/pod2man5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | POD2MAN(1) | Perl Programmers Reference Guide | POD2MAN(1) | perl v5.18.2 | 2016-07-30 | POD2MAN(1) | ||
/usr/bin/pod2readme | a /usr/bin/perl script text executable, ASCII text | script | POD2README(1) | User Contributed Perl Documentation | POD2README(1) | perl v5.18.2 | 2010-04-14 | POD2README(1) | ||
/usr/bin/pod2readme5.16 | a /usr/bin/perl5.16 script text executable, ASCII text, with CRLF, LF line terminators | script | POD2README(1) | User Contributed Perl Documentation | POD2README(1) | perl v5.16.3 | 2010-04-14 | POD2README(1) | ||
/usr/bin/pod2readme5.18 | a /usr/bin/perl5.18 script text executable, ASCII text, with CRLF, LF line terminators | script | POD2README(1) | User Contributed Perl Documentation | POD2README(1) | perl v5.18.2 | 2010-04-14 | POD2README(1) | ||
/usr/bin/pod2text | a /usr/bin/perl script text executable, ASCII text | script | POD2TEXT(1) | Perl Programmers Reference Guide | POD2TEXT(1) | perl v5.24.0 | 2016-11-12 | POD2TEXT(1) | ||
/usr/bin/pod2text5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | POD2TEXT(1) | Perl Programmers Reference Guide | POD2TEXT(1) | perl v5.16.3 | 2016-07-30 | POD2TEXT(1) | ||
/usr/bin/pod2text5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | POD2TEXT(1) | Perl Programmers Reference Guide | POD2TEXT(1) | perl v5.18.2 | 2016-07-30 | POD2TEXT(1) | ||
/usr/bin/pod2usage | a /usr/bin/perl script text executable, ASCII text | script | POD2USAGE(1) | Perl Programmers Reference Guide | POD2USAGE(1) | perl v5.24.0 | 2016-11-12 | POD2USAGE(1) | ||
/usr/bin/pod2usage5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | POD2USAGE(1) | Perl Programmers Reference Guide | POD2USAGE(1) | perl v5.16.3 | 2016-07-30 | POD2USAGE(1) | ||
/usr/bin/pod2usage5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | POD2USAGE(1) | Perl Programmers Reference Guide | POD2USAGE(1) | perl v5.18.2 | 2016-07-30 | POD2USAGE(1) | ||
/usr/bin/podchecker | a /usr/bin/perl script text executable, ASCII text | script | PODCHECKER(1) | Perl Programmers Reference Guide | PODCHECKER(1) | perl v5.24.0 | 2016-11-12 | PODCHECKER(1) | ||
/usr/bin/podchecker5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PODCHECKER(1) | Perl Programmers Reference Guide | PODCHECKER(1) | perl v5.16.3 | 2016-07-30 | PODCHECKER(1) | ||
/usr/bin/podchecker5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PODCHECKER(1) | Perl Programmers Reference Guide | PODCHECKER(1) | perl v5.18.2 | 2016-07-30 | PODCHECKER(1) | ||
/usr/bin/podselect | a /usr/bin/perl script text executable, ASCII text | script | PODSELECT(1) | Perl Programmers Reference Guide | PODSELECT(1) | perl v5.24.0 | 2016-11-12 | PODSELECT(1) | ||
/usr/bin/podselect5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PODSELECT(1) | Perl Programmers Reference Guide | PODSELECT(1) | perl v5.16.3 | 2016-07-30 | PODSELECT(1) | ||
/usr/bin/podselect5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PODSELECT(1) | Perl Programmers Reference Guide | PODSELECT(1) | perl v5.18.2 | 2016-07-30 | PODSELECT(1) | ||
/usr/bin/policytool | Mach-O universal binary with 2 architectures | Apple | policytool(1) | policytool(1) | 24 June 2004 | policytool(1) | ||||
/usr/bin/post-grohtml | Mach-O 64-bit executable x86_64 | Apple,GNU | GROHTML(1) | GROHTML(1) | Groff Version 1.19.2 | 24 November 2004 | GROHTML(1) | |||
/usr/bin/power_report.sh | Bourne-Again shell script text executable, ASCII text | script | ||||||||
/usr/bin/powermetrics | Mach-O 64-bit executable x86_64 | Darwin,Apple | powermetrics(1) | BSD General Commands Manual | powermetrics(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/pp | a /usr/bin/perl script text executable, ASCII text | script | PP(1) | User Contributed Perl Documentation | PP(1) | perl v5.18.2 | 2013-01-22 | PP(1) | ||
/usr/bin/pp5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PP(1) | User Contributed Perl Documentation | PP(1) | perl v5.16.3 | 2012-01-06 | PP(1) | ||
/usr/bin/pp5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PP(1) | User Contributed Perl Documentation | PP(1) | perl v5.18.2 | 2013-01-22 | PP(1) | ||
/usr/bin/ppdc | Mach-O 64-bit executable x86_64 | Unix,Linux,GNU | ppdc(1) | Apple Inc. | ppdc(1) | 12 June 2014 | CUPS | ppdc(1) | ||
/usr/bin/ppdhtml | Mach-O 64-bit executable x86_64 | ppdhtml(1) | Apple Inc. | ppdhtml(1) | 12 June 2014 | CUPS | ppdhtml(1) | |||
/usr/bin/ppdi | Mach-O 64-bit executable x86_64 | ppdi(1) | Apple Inc. | ppdi(1) | 12 June 2014 | CUPS | ppdi(1) | |||
/usr/bin/ppdmerge | Mach-O 64-bit executable x86_64 | ppdmerge(1) | Apple Inc. | ppdmerge(1) | 12 June 2014 | CUPS | ppdmerge(1) | |||
/usr/bin/ppdpo | Mach-O 64-bit executable x86_64 | ppdpo(1) | Apple Inc. | ppdpo(1) | 12 June 2014 | CUPS | ppdpo(1) | |||
/usr/bin/pr | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | PR(1) | BSD General Commands Manual | PR(1) | BSD | July 3, 2004 | BSD | |
/usr/bin/pre-grohtml | Mach-O 64-bit executable x86_64 | Apple,GNU | GROHTML(1) | GROHTML(1) | Groff Version 1.19.2 | 24 November 2004 | GROHTML(1) | |||
/usr/bin/priclass.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | priclass.d(1m) | USER COMMANDS | priclass.d(1m) | version 1.00 | Apr 22, 2006 | priclass.d(1m) | ||
/usr/bin/pridist.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | pridist.d(1m) | USER COMMANDS | pridist.d(1m) | version 0.90 | Jun 13, 2005 | pridist.d(1m) | ||
/usr/bin/printenv | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | PRINTENV(1) | BSD General Commands Manual | PRINTENV(1) | BSD | May 12, 2003 | BSD | |
/usr/bin/printf | Mach-O 64-bit executable x86_64 | shell_cmds | PRINTF(1) | BSD General Commands Manual | PRINTF(1) | BSD | April 21, 2014 | BSD | ||
/usr/bin/procsystime | POSIX shell script text executable, ASCII text | script | procsystime(1m) | USER COMMANDS | procsystime(1m) | version 1.00 | Sep 22, 2005 | procsystime(1m) | ||
/usr/bin/productbuild | Mach-O 64-bit executable x86_64 | pkgbuild | productbuild(1) | BSD General Commands Manual | productbuild(1) | Mac OS | September 15, 2010 | Mac OS | ||
/usr/bin/productsign | Mach-O 64-bit executable x86_64 | pkgbuild | productsign(1) | BSD General Commands Manual | productsign(1) | Mac OS | September 15, 2010 | Mac OS | ||
/usr/bin/profiles | Mach-O 64-bit executable x86_64 | Apple | profiles(1) | BSD General Commands Manual | profiles(1) | macOS | June 23, 2016 | macOS | ||
/usr/bin/prove | a /usr/bin/perl script text executable, ASCII text | script | PROVE(1) | Perl Programmers Reference Guide | PROVE(1) | perl v5.24.0 | 2016-11-12 | PROVE(1) | ||
/usr/bin/prove5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PROVE(1) | Perl Programmers Reference Guide | PROVE(1) | perl v5.16.3 | 2016-07-30 | PROVE(1) | ||
/usr/bin/prove5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PROVE(1) | Perl Programmers Reference Guide | PROVE(1) | perl v5.18.2 | 2016-07-30 | PROVE(1) | ||
/usr/bin/psed | a /usr/bin/perl script text executable, ASCII text | script | S2P(1) | Perl Programmers Reference Guide | S2P(1) | perl v5.18.2 | 2016-07-30 | S2P(1) | ||
/usr/bin/psed5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | S2P(1) | Perl Programmers Reference Guide | S2P(1) | perl v5.16.3 | 2016-07-30 | S2P(1) | ||
/usr/bin/psed5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | S2P(1) | Perl Programmers Reference Guide | S2P(1) | perl v5.18.2 | 2016-07-30 | S2P(1) | ||
/usr/bin/pstopdf | Mach-O 64-bit executable x86_64 | Apple | pstopdf(1) | BSD General Commands Manual | pstopdf(1) | Apple Computer, Inc. | February 21, 2017 | Apple Computer, Inc. | ||
/usr/bin/pstruct | a /usr/bin/perl script text executable, ASCII text | script | C2PH(1) | Perl Programmers Reference Guide | C2PH(1) | perl v5.24.0 | 2016-11-12 | C2PH(1) | ||
/usr/bin/pstruct5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | C2PH(1) | Perl Programmers Reference Guide | C2PH(1) | perl v5.16.3 | 2016-07-30 | C2PH(1) | ||
/usr/bin/pstruct5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | C2PH(1) | Perl Programmers Reference Guide | C2PH(1) | perl v5.18.2 | 2016-07-30 | C2PH(1) | ||
/usr/bin/ptar | a /usr/bin/perl script text executable, ASCII text | script | PTAR(1) | Perl Programmers Reference Guide | PTAR(1) | perl v5.24.0 | 2016-11-12 | PTAR(1) | ||
/usr/bin/ptar5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PTAR(1) | Perl Programmers Reference Guide | PTAR(1) | perl v5.16.3 | 2016-07-30 | PTAR(1) | ||
/usr/bin/ptar5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PTAR(1) | Perl Programmers Reference Guide | PTAR(1) | perl v5.18.2 | 2016-07-30 | PTAR(1) | ||
/usr/bin/ptardiff | a /usr/bin/perl script text executable, ASCII text | script | PTARDIFF(1) | Perl Programmers Reference Guide | PTARDIFF(1) | perl v5.24.0 | 2016-11-12 | PTARDIFF(1) | ||
/usr/bin/ptardiff5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PTARDIFF(1) | Perl Programmers Reference Guide | PTARDIFF(1) | perl v5.16.3 | 2016-07-30 | PTARDIFF(1) | ||
/usr/bin/ptardiff5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PTARDIFF(1) | Perl Programmers Reference Guide | PTARDIFF(1) | perl v5.18.2 | 2016-07-30 | PTARDIFF(1) | ||
/usr/bin/ptargrep | a /usr/bin/perl script text executable, ASCII text | script | PTARGREP(1) | Perl Programmers Reference Guide | PTARGREP(1) | perl v5.24.0 | 2016-11-12 | PTARGREP(1) | ||
/usr/bin/ptargrep5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PTARGREP(1) | Perl Programmers Reference Guide | PTARGREP(1) | perl v5.16.3 | 2016-07-30 | PTARGREP(1) | ||
/usr/bin/ptargrep5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PTARGREP(1) | Perl Programmers Reference Guide | PTARGREP(1) | perl v5.18.2 | 2016-07-30 | PTARGREP(1) | ||
/usr/bin/pubsub | Mach-O universal binary with 2 architectures | Apple | pubsub(1) | BSD General Commands Manual | pubsub(1) | Mac OS X 10.5 | February 1, 2007 | Mac OS X 10.5 | ||
/usr/bin/pwhich | a /usr/bin/perl script text executable, ASCII text | script | PWHICH(1) | User Contributed Perl Documentation | PWHICH(1) | perl v5.18.2 | 2009-09-26 | PWHICH(1) | ||
/usr/bin/pwhich5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | PWHICH(1) | User Contributed Perl Documentation | PWHICH(1) | perl v5.16.3 | 2009-09-26 | PWHICH(1) | ||
/usr/bin/pwhich5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | PWHICH(1) | User Contributed Perl Documentation | PWHICH(1) | perl v5.18.2 | 2009-09-26 | PWHICH(1) | ||
/usr/bin/pwpolicy | Mach-O 64-bit executable x86_64 | DSTools | Apple | |||||||
/usr/bin/pydoc | a /usr/bin/python script text executable, ASCII text | script | PYDOC(1) | BSD General Commands Manual | PYDOC(1) | Dec 19, 2003 | ||||
/usr/bin/pydoc2.6 | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | PYDOC(1) | BSD General Commands Manual | PYDOC(1) | Dec 19, 2003 | ||||
/usr/bin/pydoc2.7 | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | PYDOC(1) | BSD General Commands Manual | PYDOC(1) | Dec 19, 2003 | ||||
/usr/bin/python | Mach-O universal binary with 2 architectures | Apple | PYTHON(1) | PYTHON(1) | PYTHON(1) | |||||
/usr/bin/python-config | a /usr/bin/python script text executable, ASCII text | script | ||||||||
/usr/bin/python2.6 | Mach-O universal binary with 2 architectures | PYTHON(1) | PYTHON(1) | $Date$ | PYTHON(1) | |||||
/usr/bin/python2.6-config | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/python2.7 | Mach-O universal binary with 2 architectures | PYTHON(1) | PYTHON(1) | PYTHON(1) | ||||||
/usr/bin/python2.7-config | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/pythonw | Mach-O universal binary with 2 architectures | Apple | PYTHON(1) | BSD General Commands Manual | PYTHON(1) | BSD | July 7, 2014 | BSD | ||
/usr/bin/pythonw2.6 | Mach-O universal binary with 2 architectures | PYTHONW(1) | BSD General Commands Manual | PYTHONW(1) | Aug 11, 2008 | |||||
/usr/bin/pythonw2.7 | Mach-O universal binary with 2 architectures | PYTHONW(1) | BSD General Commands Manual | PYTHONW(1) | Aug 11, 2008 | |||||
/usr/bin/qc2movie | Mach-O executable i386 | QuartzComposerTools | qc2movie(1) | BSD General Commands Manual | qc2movie(1) | Mac OS | July 9 2007 | Mac OS | ||
/usr/bin/qlmanage | Mach-O 64-bit executable x86_64 | Darwin,Apple | qlmanage(1) | BSD General Commands Manual | qlmanage(1) | Mac OS X | March 29, 2007 | Mac OS X | ||
/usr/bin/qtdefaults | Mach-O executable i386 | Apple | qtdefaults(1) | BSD General Commands Manual | qtdefaults(1) | MacOS X | February 21, 2017 | MacOS X | ||
/usr/bin/qtmodernizer | Mach-O universal binary with 2 architectures | Apple | qtmodernizer(1) | BSD General Commands Manual | qtmodernizer(1) | Mac OS X | February 21, 2017 | Mac OS X | ||
/usr/bin/quota | setuid Mach-O 64-bit executable x86_64 | QUOTA(1) | BSD General Commands Manual | QUOTA(1) | 4.2 Berkeley Distribution | March 28, 2002 | 4.2 Berkeley Distribution | |||
/usr/bin/rails | a /usr/bin/ruby script text executable, ASCII text | script | ||||||||
/usr/bin/rake | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | RAKE(1) | Ruby Programmers Reference Guide | RAKE(1) | UNIX | November 7, 2012 | UNIX | ||
/usr/bin/ranlib | Mach-O 64-bit executable x86_64 | Shim | LIBTOOL(1) | LIBTOOL(1) | Apple Inc. | January 27, 2014 | LIBTOOL(1) | |||
/usr/bin/rdoc | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | ||||||||
/usr/bin/read | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/readlink | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD | STAT(1) | BSD General Commands Manual | STAT(1) | BSD | May 8, 2003 | BSD | |
/usr/bin/rebase | Mach-O 64-bit executable x86_64 | Shim | rebase(1) | BSD General Commands Manual | rebase(1) | Darwin | June 6, 2006 | Darwin | ||
/usr/bin/redo_prebinding | Mach-O 64-bit executable x86_64 | Shim | REDO_PREBINDING(1) | REDO_PREBINDING(1) | Apple Computer, Inc. | March 29, 2004 | REDO_PREBINDING(1) | |||
/usr/bin/refer | Mach-O 64-bit executable x86_64 | Apple,GNU | REFER(1) | REFER(1) | Groff Version 1.19.2 | 6 May 2005 | REFER(1) | |||
/usr/bin/renice | Mach-O 64-bit executable x86_64 | shell_cmds | ||||||||
/usr/bin/reset | Mach-O 64-bit executable x86_64 | ncurses | tput(1) | tput(1) | tput(1) | |||||
/usr/bin/ResMerger | Mach-O 64-bit executable x86_64 | Shim | RESMERGER(1) | BSD General Commands Manual | RESMERGER(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/resolveLinks | Mach-O 64-bit executable x86_64 | Shim | RESOLVELINKS(1) | BSD General Commands Manual | RESOLVELINKS(1) | Darwin | May 27, 2010 | Darwin | ||
/usr/bin/rev | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | REV(1) | BSD General Commands Manual | REV(1) | BSD | June 9, 1993 | BSD | |
/usr/bin/Rez | Mach-O 64-bit executable x86_64 | Shim | REZ(1) | REZ(1) | Mac OS X | July 25, 2000 | REZ(1) | |||
/usr/bin/RezDet | Mach-O 64-bit executable x86_64 | Shim | REZDET(1) | REZDET(1) | Mac OS X | December 25, 2005 | REZDET(1) | |||
/usr/bin/RezWack | Mach-O 64-bit executable x86_64 | Shim | REZWACK(1) | BSD General Commands Manual | REZWACK(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/ri | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | RI(1) | Ruby Programmers Reference Guide | RI(1) | UNIX | July 10, 2013 | UNIX | ||
/usr/bin/rmic | Mach-O universal binary with 2 architectures | Apple | rmic(1) | rmic(1) | 23 June 2004 | rmic(1) | ||||
/usr/bin/rmid | Mach-O universal binary with 2 architectures | Apple | rmid(1) | rmid(1) | 10 March 2001 | rmid(1) | ||||
/usr/bin/rmiregistry | Mach-O universal binary with 2 architectures | Apple | rmiregistry(1) | rmiregistry(1) | 23 Apr 2001 | rmiregistry(1) | ||||
/usr/bin/rpcgen | Mach-O 64-bit executable x86_64 | Shim | RPCGEN(1) | BSD General Commands Manual | RPCGEN(1) | June 11, 1995 | ||||
/usr/bin/rs | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | RS(1) | BSD General Commands Manual | RS(1) | BSD | July 30, 2004 | BSD | |
/usr/bin/rsync | Mach-O 64-bit executable x86_64 | rsync | Apple,GNU,Copyright | rsync(1) | rsync(1) | 6 Nov 2006 | rsync(1) | |||
/usr/bin/ruby | Mach-O universal binary with 2 architectures | BSD,Apple | RUBY(1) | Ruby Programmers Reference Guide | RUBY(1) | UNIX | October 31, 2015 | UNIX | ||
/usr/bin/runocc.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | runocc.d(1m) | USER COMMANDS | runocc.d(1m) | version 0.50 | Apr 23, 2006 | runocc.d(1m) | ||
/usr/bin/rvictl | Mach-O universal binary with 2 architectures | |||||||||
/usr/bin/rview | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIM(1) | VIM(1) | 2006 Apr 11 | VIM(1) | |||
/usr/bin/rvim | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIM(1) | VIM(1) | 2006 Apr 11 | VIM(1) | |||
/usr/bin/rwbypid.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | rwbypid.d(1m) | USER COMMANDS | rwbypid.d(1m) | version 1.00 | Jun 28, 2005 | rwbypid.d(1m) | ||
/usr/bin/rwbytype.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | rwbytype.d(1m) | USER COMMANDS | rwbytype.d(1m) | version 0.70 | Jan 11, 2006 | rwbytype.d(1m) | ||
/usr/bin/rwsnoop | POSIX shell script text executable, ASCII text | script | rwsnoop(1m) | USER COMMANDS | rwsnoop(1m) | version 0.70 | Jul 24, 2005 | rwsnoop(1m) | ||
/usr/bin/s2p | a /usr/bin/perl script text executable, ASCII text | script | S2P(1) | Perl Programmers Reference Guide | S2P(1) | perl v5.18.2 | 2016-07-30 | S2P(1) | ||
/usr/bin/s2p5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | S2P(1) | Perl Programmers Reference Guide | S2P(1) | perl v5.16.3 | 2016-07-30 | S2P(1) | ||
/usr/bin/s2p5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | S2P(1) | Perl Programmers Reference Guide | S2P(1) | perl v5.18.2 | 2016-07-30 | S2P(1) | ||
/usr/bin/safaridriver | Mach-O 64-bit executable x86_64 | Apple,Copyright | safaridriver(1) | BSD General Commands Manual | safaridriver(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/sample | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | sample(1) | BSD General Commands Manual | sample(1) | BSD | Mar. 16, 2013 | BSD | |
/usr/bin/sampleproc | Bourne-Again shell script text executable, ASCII text | script | sampleproc(1m) | USER COMMANDS | sampleproc(1m) | version 0.70 | Jun 09, 2005 | sampleproc(1m) | ||
/usr/bin/sandbox-exec | Mach-O 64-bit executable x86_64 | SANDBOX-EXEC(1) | BSD General Commands Manual | SANDBOX-EXEC(1) | Mac OS X | February 14, 2012 | Mac OS X | |||
/usr/bin/say | Mach-O 64-bit executable x86_64 | SAY(1) | Speech Synthesis Manager | SAY(1) | 1.0 | 2012-09-15 | SAY(1) | |||
/usr/bin/sc_usage | Mach-O universal binary with 2 architectures | system_cmds | SC_USAGE(1) | BSD General Commands Manual | SC_USAGE(1) | Mac OS X | October 28, 2002 | Mac OS X | ||
/usr/bin/scandeps.pl | a /usr/bin/perl script text executable, ASCII text | script | SCANDEPS(1) | User Contributed Perl Documentation | SCANDEPS(1) | perl v5.18.2 | 2012-02-21 | SCANDEPS(1) | ||
/usr/bin/scandeps5.16.pl | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/scandeps5.18.pl | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/schemagen | Mach-O universal binary with 2 architectures | Apple | schemagen(1) | schemagen(1) | 07 Aug 2006 | schemagen(1) | ||||
/usr/bin/scp | Mach-O 64-bit executable x86_64 | Unix,GNU | SCP(1) | BSD General Commands Manual | SCP(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/screen | Mach-O 64-bit executable x86_64 | screen | Unix,GNU,Copyright | SCREEN(1) | SCREEN(1) | 4th Berkeley Distribution | Aug 2003 | SCREEN(1) | ||
/usr/bin/script | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | SCRIPT(1) | BSD General Commands Manual | SCRIPT(1) | BSD | December 4, 2013 | BSD | |
/usr/bin/sdef | Mach-O 64-bit executable x86_64 | Shim | SDEF(1) | BSD General Commands Manual | SDEF(1) | Mac OS X | June 30, 2006 | Mac OS X | ||
/usr/bin/sdiff | Mach-O 64-bit executable x86_64 | gnudiff | GNU,Copyright | SDIFF(1) | User Commands | SDIFF(1) | diffutils 2.8.1 | April 2002 | SDIFF(1) | |
/usr/bin/sdp | Mach-O 64-bit executable x86_64 | Shim | SDP(1) | BSD General Commands Manual | SDP(1) | Mac OS X | July 12, 2007 | Mac OS X | ||
/usr/bin/sdx | POSIX shell script executable (binary data) | script | sdx(1) | sdx(1) | sdx | 2.0 | sdx(1) | |||
/usr/bin/security | Mach-O 64-bit executable x86_64 | SecurityTool | Apple,Unix,GNU | security(1) | BSD General Commands Manual | security(1) | Darwin | March 1, 2012 | Darwin | |
/usr/bin/sed | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | SED(1) | BSD General Commands Manual | SED(1) | BSD | May 10, 2005 | BSD | |
/usr/bin/seeksize.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | seeksize.d(1m) | USER COMMANDS | seeksize.d(1m) | version 0.95 | May 14, 2005 | seeksize.d(1m) | ||
/usr/bin/segedit | Mach-O 64-bit executable x86_64 | Shim | SEGEDIT(1) | SEGEDIT(1) | Apple Computer, Inc. | October 23, 1997 | SEGEDIT(1) | |||
/usr/bin/seq | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | SEQ(1) | BSD General Commands Manual | SEQ(1) | BSD | February 19, 2010 | BSD | |
/usr/bin/serialver | Mach-O universal binary with 2 architectures | Apple | serialver(1) | serialver(1) | 24 June 2004 | serialver(1) | ||||
/usr/bin/servertool | Mach-O universal binary with 2 architectures | Apple | servertool(1) | servertool(1) | 10 March 2001 | servertool(1) | ||||
/usr/bin/SetFile | Mach-O 64-bit executable x86_64 | Shim | SETFILE(1) | BSD General Commands Manual | SETFILE(1) | Mac OS X | January 4, 2009 | Mac OS X | ||
/usr/bin/setregion | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/setuids.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | setuids.d(1m) | USER COMMANDS | setuids.d(1m) | version 1.00 | Jun 18, 2005 | setuids.d(1m) | ||
/usr/bin/sfltool | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/sftp | Mach-O 64-bit executable x86_64 | Unix,GNU | SFTP(1) | BSD General Commands Manual | SFTP(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/shar | POSIX shell script text executable, ASCII text | script | SHAR(1) | BSD General Commands Manual | SHAR(1) | 4.4BSD | June 6, 1993 | 4.4BSD | ||
/usr/bin/shasum | a /usr/bin/perl script text executable, ASCII text | script | SHASUM(1) | Perl Programmers Reference Guide | SHASUM(1) | perl v5.24.0 | 2016-11-12 | SHASUM(1) | ||
/usr/bin/shasum5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | SHASUM(1) | Perl Programmers Reference Guide | SHASUM(1) | perl v5.16.3 | 2016-07-30 | SHASUM(1) | ||
/usr/bin/shasum5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | SHASUM(1) | Perl Programmers Reference Guide | SHASUM(1) | perl v5.18.2 | 2016-07-30 | SHASUM(1) | ||
/usr/bin/shlock | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | SHLOCK(1) | BSD General Commands Manual | SHLOCK(1) | BSD | June 29, 1997 | BSD | |
/usr/bin/showmount | Mach-O 64-bit executable x86_64 | |||||||||
/usr/bin/sigdist.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | sigdist.d(1m) | USER COMMANDS | sigdist.d(1m) | version 1.00 | Jun 09, 2005 | sigdist.d(1m) | ||
/usr/bin/sips | Mach-O 64-bit executable x86_64 | Darwin,Apple,Copyright | sips(1) | BSD General Commands Manual | sips(1) | Darwin | February 21, 2017 | Darwin | ||
/usr/bin/size | Mach-O 64-bit executable x86_64 | Shim | SIZE(1) | SIZE(1) | Apple Computer, Inc. | July 28, 2005 | SIZE(1) | |||
/usr/bin/slogin | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU | ||||||||
/usr/bin/smbutil | Mach-O 64-bit executable x86_64 | Apple,Unix | SMBUTIL(1) | BSD General Commands Manual | SMBUTIL(1) | BSD | February 14, 2000 | BSD | ||
/usr/bin/smtpd.py | a /usr/bin/python -R script text executable, ASCII text | script | ||||||||
/usr/bin/smtpd2.6.py | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/smtpd2.7.py | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/snfsdefrag | Mach-O 64-bit executable x86_64 | Apple | SNFSDEFRAG(1) | SNFSDEFRAG(1) | Xsan File System | June 2014 | SNFSDEFRAG(1) | |||
/usr/bin/snmp-bridge-mib | a /usr/bin/perl script text executable, ASCII text | script | SNMP-BRIDGE-MIB(1) | Net-SNMP | SNMP-BRIDGE-MIB(1) | http://www.ibm.com/ v6 | 26 Mar 2010 | SNMP-BRIDGE-MIB(1) | ||
/usr/bin/snmpbulkget | Mach-O 64-bit executable x86_64 | SNMPBULKGET(1) | Net-SNMP | SNMPBULKGET(1) | V5.6.2.1 | 01 May 2002 | SNMPBULKGET(1) | |||
/usr/bin/snmpbulkwalk | Mach-O 64-bit executable x86_64 | SNMPBULKWALK(1) | Net-SNMP | SNMPBULKWALK(1) | V5.6.2.1 | 01 May 2002 | SNMPBULKWALK(1) | |||
/usr/bin/snmpconf | a /usr/bin/perl script text executable, ASCII text | script | SNMPCONF(1) | Net-SNMP | SNMPCONF(1) | V5.6.2.1 | 25 Feb 2003 | SNMPCONF(1) | ||
/usr/bin/snmpdelta | Mach-O 64-bit executable x86_64 | SNMPDELTA(1) | Net-SNMP | SNMPDELTA(1) | V5.6.2.1 | 25 Jul 2003 | SNMPDELTA(1) | |||
/usr/bin/snmpdf | Mach-O 64-bit executable x86_64 | SNMPDF(1) | Net-SNMP | SNMPDF(1) | V5.6.2.1 | 25 Jul 2003 | SNMPDF(1) | |||
/usr/bin/snmpget | Mach-O 64-bit executable x86_64 | SNMPGET(1) | Net-SNMP | SNMPGET(1) | V5.6.2.1 | 18 Jun 2007 | SNMPGET(1) | |||
/usr/bin/snmpgetnext | Mach-O 64-bit executable x86_64 | SNMPGETNEXT(1) | Net-SNMP | SNMPGETNEXT(1) | V5.6.2.1 | 04 Mar 2002 | SNMPGETNEXT(1) | |||
/usr/bin/snmpinform | Mach-O 64-bit executable x86_64 | SNMPTRAP(1) | Net-SNMP | SNMPTRAP(1) | V5.6.2.1 | 19 Jun 2003 | SNMPTRAP(1) | |||
/usr/bin/snmpnetstat | Mach-O 64-bit executable x86_64 | Copyright | SNMPNETSTAT(1) | Net-SNMP | SNMPNETSTAT(1) | V5.6.2.1 | 20 Jan 2010 | SNMPNETSTAT(1) | ||
/usr/bin/snmpset | Mach-O 64-bit executable x86_64 | SNMPSET(1) | Net-SNMP | SNMPSET(1) | V5.6.2.1 | 19 Jun 2003 | SNMPSET(1) | |||
/usr/bin/snmpstatus | Mach-O 64-bit executable x86_64 | SNMPSTATUS(1) | Net-SNMP | SNMPSTATUS(1) | V5.6.2.1 | 25 Jul 2003 | SNMPSTATUS(1) | |||
/usr/bin/snmptable | Mach-O 64-bit executable x86_64 | SNMPTABLE(1) | Net-SNMP | SNMPTABLE(1) | V5.6.2.1 | 06 Sep 2003 | SNMPTABLE(1) | |||
/usr/bin/snmptest | Mach-O 64-bit executable x86_64 | SNMPTEST(1) | Net-SNMP | SNMPTEST(1) | V5.6.2.1 | 06 Sep 2003 | SNMPTEST(1) | |||
/usr/bin/snmptranslate | Mach-O 64-bit executable x86_64 | SNMPTRANSLATE(1) | Net-SNMP | SNMPTRANSLATE(1) | V5.6.2.1 | 20 Jul 2010 | SNMPTRANSLATE(1) | |||
/usr/bin/snmptrap | Mach-O 64-bit executable x86_64 | SNMPTRAP(1) | Net-SNMP | SNMPTRAP(1) | V5.6.2.1 | 19 Jun 2003 | SNMPTRAP(1) | |||
/usr/bin/snmpusm | Mach-O 64-bit executable x86_64 | SNMPUSM(1) | Net-SNMP | SNMPUSM(1) | V5.6.2.1 | 11 Dec 2009 | SNMPUSM(1) | |||
/usr/bin/snmpvacm | Mach-O 64-bit executable x86_64 | SNMPVACM(1) | Net-SNMP | SNMPVACM(1) | V5.6.2.1 | 05 Sep 2006 | SNMPVACM(1) | |||
/usr/bin/snmpwalk | Mach-O 64-bit executable x86_64 | SNMPWALK(1) | Net-SNMP | SNMPWALK(1) | V5.6.2.1 | 28 May 2007 | SNMPWALK(1) | |||
/usr/bin/sntp | Mach-O 64-bit executable x86_64 | ntp | Apple,Unix,Copyright | SNTP(1sntpmdoc) | User | SNTP(1sntpmdoc) | BSD | January 20 2016 | BSD | |
/usr/bin/soelim | Mach-O 64-bit executable x86_64 | Apple,GNU | SOELIM(1) | SOELIM(1) | Groff Version 1.19.2 | 6 August 2004 | SOELIM(1) | |||
/usr/bin/sort | Mach-O 64-bit executable x86_64 | text_cmds | Apple,GNU,Copyright | SORT(1) | User Commands | SORT(1) | sort 5.93 | November 2005 | SORT(1) | |
/usr/bin/spfd | a /usr/bin/perl script text executable, ASCII text | script | SPFD(1) | User Contributed Perl Documentation | SPFD(1) | perl v5.18.2 | 2006-02-06 | SPFD(1) | ||
/usr/bin/spfd5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | SPFD(1) | User Contributed Perl Documentation | SPFD(1) | perl v5.16.3 | 2006-02-06 | SPFD(1) | ||
/usr/bin/spfd5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | SPFD(1) | User Contributed Perl Documentation | SPFD(1) | perl v5.18.2 | 2006-02-06 | SPFD(1) | ||
/usr/bin/spfquery | a /usr/bin/perl script text executable, ASCII text | script | SPFQUERY(1) | User Contributed Perl Documentation | SPFQUERY(1) | perl v5.18.2 | 2016-07-30 | SPFQUERY(1) | ||
/usr/bin/spfquery5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | SPFQUERY(1) | User Contributed Perl Documentation | SPFQUERY(1) | perl v5.16.3 | 2016-07-30 | SPFQUERY(1) | ||
/usr/bin/spfquery5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | SPFQUERY(1) | User Contributed Perl Documentation | SPFQUERY(1) | perl v5.18.2 | 2016-07-30 | SPFQUERY(1) | ||
/usr/bin/splain | a /usr/bin/perl script text executable, ASCII text | script | SPLAIN(1) | Perl Programmers Reference Guide | SPLAIN(1) | perl v5.24.0 | 2016-11-12 | SPLAIN(1) | ||
/usr/bin/splain5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | SPLAIN(1) | Perl Programmers Reference Guide | SPLAIN(1) | perl v5.16.3 | 2016-07-30 | SPLAIN(1) | ||
/usr/bin/splain5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | SPLAIN(1) | Perl Programmers Reference Guide | SPLAIN(1) | perl v5.18.2 | 2016-07-30 | SPLAIN(1) | ||
/usr/bin/split | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | SPLIT(1) | BSD General Commands Manual | SPLIT(1) | BSD | August 21, 2005 | BSD | |
/usr/bin/SplitForks | Mach-O 64-bit executable x86_64 | Shim | SPLITFORKS(1) | BSD General Commands Manual | SPLITFORKS(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/sqlite3 | Mach-O universal binary with 2 architectures | SQLite | ||||||||
/usr/bin/ssh | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU | SSH(1) | BSD General Commands Manual | SSH(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/ssh-add | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU | SSH-ADD(1) | BSD General Commands Manual | SSH-ADD(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/ssh-agent | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU | SSH-AGENT(1) | BSD General Commands Manual | SSH-AGENT(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/ssh-copy-id | POSIX shell script text executable, ASCII text | script | SSH-COPY-ID(1) | BSD General Commands Manual | SSH-COPY-ID(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/ssh-keygen | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU | SSH-KEYGEN(1) | BSD General Commands Manual | SSH-KEYGEN(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/ssh-keyscan | Mach-O 64-bit executable x86_64 | Apple,Unix,GNU | SSH-KEYSCAN(1) | BSD General Commands Manual | SSH-KEYSCAN(1) | BSD | February 21, 2017 | BSD | ||
/usr/bin/stat | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD | STAT(1) | BSD General Commands Manual | STAT(1) | BSD | May 8, 2003 | BSD | |
/usr/bin/stringdups | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | stringdups(1) | BSD General Commands Manual | stringdups(1) | BSD | July 2, 2016 | BSD | |
/usr/bin/stringdups32 | Mach-O executable i386 | SamplingTools | Apple | stringdups(1) | BSD General Commands Manual | stringdups(1) | BSD | July 2, 2016 | BSD | |
/usr/bin/strings | Mach-O 64-bit executable x86_64 | Shim | STRINGS(1) | STRINGS(1) | Apple Computer, Inc. | September 11, 2006 | STRINGS(1) | |||
/usr/bin/strip | Mach-O 64-bit executable x86_64 | Shim | STRIP(1) | STRIP(1) | Apple, Inc. | February 25, 2016 | STRIP(1) | |||
/usr/bin/stty.pl | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/stty5.16.pl | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/stty5.18.pl | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/su | setuid Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | SU(1) | BSD General Commands Manual | SU(1) | BSD | September 13, 2006 | BSD | |
/usr/bin/sudo | setuid cannot open | |||||||||
/usr/bin/sum | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Copyright | CKSUM(1) | BSD General Commands Manual | CKSUM(1) | BSD | April 28, 1995 | BSD | |
/usr/bin/svn | Mach-O 64-bit executable x86_64 | Shim | svn(1) | svn(1) | svn(1) | |||||
/usr/bin/svnadmin | Mach-O 64-bit executable x86_64 | Shim | svnadmin(1) | svnadmin(1) | svnadmin(1) | |||||
/usr/bin/svndumpfilter | Mach-O 64-bit executable x86_64 | Shim | svndumpfilter(1) | svndumpfilter(1) | svndumpfilter(1) | |||||
/usr/bin/svnlook | Mach-O 64-bit executable x86_64 | Shim | svnlook(1) | svnlook(1) | svnlook(1) | |||||
/usr/bin/svnserve | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/svnsync | Mach-O 64-bit executable x86_64 | Shim | svnsync(1) | svnsync(1) | svnsync(1) | |||||
/usr/bin/svnversion | Mach-O 64-bit executable x86_64 | Shim | svnversion(1) | svnversion(1) | svnversion(1) | |||||
/usr/bin/sw_vers | Mach-O 64-bit executable x86_64 | SW_VERS(1) | BSD General Commands Manual | SW_VERS(1) | Mac OS X | March 10, 2003 | Mac OS X | |||
/usr/bin/swift | Mach-O 64-bit executable x86_64 | Shim | swift(1) | Swift Documentation | swift(1) | swift 3.0.2 | 2016-11-18 | swift(1) | ||
/usr/bin/swiftc | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/symbols | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | symbols(1) | BSD General Commands Manual | symbols(1) | Darwin | February 21, 2017 | Darwin | |
/usr/bin/symbolscache | Mach-O 64-bit executable x86_64 | CoreSymbolication | Apple | symbolscache(1) | BSD General Commands Manual | symbolscache(1) | Darwin | February 21, 2017 | Darwin | |
/usr/bin/syscallbypid.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | syscallbypid.d(1m) | USER COMMANDS | syscallbypid.d(1m) | version 1.00 | Jun 28, 2005 | syscallbypid.d(1m) | ||
/usr/bin/syscallbyproc.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | syscallbyproc.d(1m) | USER COMMANDS | syscallbyproc.d(1m) | version 1.00 | May 15, 2005 | syscallbyproc.d(1m) | ||
/usr/bin/syscallbysysc.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | syscallbysysc.d(1m) | USER COMMANDS | syscallbysysc.d(1m) | version 1.00 | May 15, 2005 | syscallbysysc.d(1m) | ||
/usr/bin/sysdiagnose | Mach-O 64-bit executable x86_64 | sysdiagnose | BSD,Darwin,Apple | sysdiagnose(1) | BSD General Commands Manual | sysdiagnose(1) | OS X | January 24, 1984 | OS X | |
/usr/bin/syslog | Mach-O 64-bit executable x86_64 | syslog | BSD,Apple | SYSLOG(1) | BSD General Commands Manual | SYSLOG(1) | Mac OS X | October 18, 2004 | Mac OS X | |
/usr/bin/tab2space | Mach-O universal binary with 2 architectures | Unix | TAB2SPACE(1) | TAB2SPACE(1) | February 6, 2003 | TAB2SPACE(1) | ||||
/usr/bin/tabs | Mach-O 64-bit executable x86_64 | adv_cmds | FreeBSD | TABS(1) | BSD General Commands Manual | TABS(1) | BSD | May 20, 2002 | BSD | |
/usr/bin/tail | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | TAIL(1) | BSD General Commands Manual | TAIL(1) | BSD | June 29, 2006 | BSD | |
/usr/bin/tailspin | Mach-O 64-bit executable x86_64 | tailspin | tailspin(1) | BSD General Commands Manual | tailspin(1) | Darwin | 22 June 2016 | Darwin | ||
/usr/bin/talk | Mach-O 64-bit executable x86_64 | Copyright | TALK(1) | BSD General Commands Manual | TALK(1) | BSD | August 21, 2008 | BSD | ||
/usr/bin/tar | Mach-O 64-bit executable x86_64 | libarchive | BSD | BSDTAR(1) | BSD General Commands Manual | BSDTAR(1) | BSD | Oct 12, 2009 | BSD | |
/usr/bin/taskinfo | Mach-O 64-bit executable x86_64 | PerfUtils | BSD,Darwin,Apple | TASKINFO(1) | BSD General Commands Manual | TASKINFO(1) | OS X | January 24, 1984 | OS X | |
/usr/bin/tbl | Mach-O 64-bit executable x86_64 | Apple,GNU | TBL(1) | TBL(1) | Groff Version 1.19.2 | 11 September 2004 | TBL(1) | |||
/usr/bin/tccutil | Mach-O 64-bit executable x86_64 | tccutil(1) | BSD General Commands Manual | tccutil(1) | Darwin | April 3, 2012 | Darwin | |||
/usr/bin/tclsh | Mach-O universal binary with 2 architectures | Tclsh | Apple,Copyright | tclsh(1) | Tcl Applications | tclsh(1) | Tcl | tclsh(1) | ||
/usr/bin/tclsh8.4 | Mach-O executable i386 | Tclsh | Apple,Copyright | tclsh(1) | Tcl Applications | tclsh(1) | Tcl | tclsh(1) | ||
/usr/bin/tclsh8.5 | Mach-O universal binary with 2 architectures | Tclsh | Apple,Copyright | tclsh(1) | Tcl Applications | tclsh(1) | Tcl | tclsh(1) | ||
/usr/bin/tee | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | TEE(1) | BSD General Commands Manual | TEE(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/telnet | Mach-O 64-bit executable x86_64 | FreeBSD,Unix | TELNET(1) | BSD General Commands Manual | TELNET(1) | BSD | January 27, 2000 | BSD | ||
/usr/bin/testrb | a /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ script text executable, ASCII text | script | ||||||||
/usr/bin/texi2dvi | POSIX shell script text executable, ASCII text | script | TEXI2DVI(1) | User Commands | TEXI2DVI(1) | texi2dvi 1.34 | December 2004 | TEXI2DVI(1) | ||
/usr/bin/texi2pdf | POSIX shell script text executable, ASCII text | script | ||||||||
/usr/bin/texindex | Mach-O 64-bit executable x86_64 | GNU,Copyright | TEXINDEX(1) | User Commands | TEXINDEX(1) | texindex 4.8 | December 2004 | TEXINDEX(1) | ||
/usr/bin/textutil | Mach-O 64-bit executable x86_64 | AKCmds | Copyright | TEXTUTIL(1) | BSD General Commands Manual | TEXTUTIL(1) | Mac OS X | September 9, 2004 | Mac OS X | |
/usr/bin/tfmtodit | Mach-O 64-bit executable x86_64 | Apple,GNU | TFMTODIT(1) | TFMTODIT(1) | Groff Version 1.19.2 | 26 February 2002 | TFMTODIT(1) | |||
/usr/bin/tftp | Mach-O 64-bit executable x86_64 | FreeBSD,Berkeley,Copyright | TFTP(1) | BSD General Commands Manual | TFTP(1) | BSD | June 11, 2003 | BSD | ||
/usr/bin/thermal | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/tic | Mach-O 64-bit executable x86_64 | ncurses | tic(1M) | tic(1M) | tic(1M) | |||||
/usr/bin/tidy | Mach-O universal binary with 2 architectures | TIDY(1) | 5.2.0 | TIDY(1) | HTML Tidy | 5.2.0 | TIDY(1) | |||
/usr/bin/tiff2icns | Mach-O 64-bit executable x86_64 | AKCmds | TIFF2ICNS(1) | BSD General Commands Manual | TIFF2ICNS(1) | Mac OS X | August 28, 2002 | Mac OS X | ||
/usr/bin/tiffutil | Mach-O 64-bit executable x86_64 | AKCmds | Apple,Copyright | TIFFUTIL(1) | BSD General Commands Manual | TIFFUTIL(1) | Mac OS X | September 2, 2010 | Mac OS X | |
/usr/bin/time | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | TIME(1) | BSD General Commands Manual | TIME(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/timer_analyser.d | POSIX shell script text executable, ASCII text | script | ||||||||
/usr/bin/timerfires | POSIX shell script text executable, ASCII text | script | TIMERFIRES(1) | BSD General Commands Manual | TIMERFIRES(1) | OS X | May 20, 2013 | OS X | ||
/usr/bin/tkcon | POSIX shell script text executable, ASCII text | script | tkcon(1) | tkcon(1) | TkCon | 2.5 | tkcon(1) | |||
/usr/bin/tkmib | a /usr/bin/perl script text executable, ASCII text | script | tkmib(1) | Net-SNMP | tkmib(1) | V5.6.2.1 | 16 Nov 2006 | tkmib(1) | ||
/usr/bin/tkpp | a /usr/bin/perl script text executable, ASCII text | script | TKPP(1) | User Contributed Perl Documentation | TKPP(1) | perl v5.18.2 | 2012-07-16 | TKPP(1) | ||
/usr/bin/tkpp5.16 | a /usr/bin/perl5.16 script text executable, UTF-8 Unicode text | script | TKPP(1) | User Contributed Perl Documentation | TKPP(1) | perl v5.16.3 | 2012-01-09 | TKPP(1) | ||
/usr/bin/tkpp5.18 | a /usr/bin/perl5.18 script text executable, UTF-8 Unicode text | script | TKPP(1) | User Contributed Perl Documentation | TKPP(1) | perl v5.18.2 | 2012-07-16 | TKPP(1) | ||
/usr/bin/tmdiagnose | Mach-O 64-bit executable x86_64 | Darwin,Apple | ||||||||
/usr/bin/tmutil | Mach-O 64-bit executable x86_64 | Apple,GNU | ||||||||
/usr/bin/tnameserv | Mach-O universal binary with 2 architectures | Apple | tnameserv(1) | tnameserv(1) | 13 June 2000 | tnameserv(1) | ||||
/usr/bin/toe | Mach-O 64-bit executable x86_64 | ncurses | toe(1M) | toe(1M) | toe(1M) | |||||
/usr/bin/top | setuid Mach-O 64-bit executable x86_64 | top | BSD,Apple,Copyright | top(1) | top(1) | top | top(1) | |||
/usr/bin/tops | Mach-O 64-bit executable x86_64 | AKCmds | Apple | TOPS(1) | TOPS(1) | Apple Computer, Inc. | March 14, 1995 | TOPS(1) | ||
/usr/bin/topsyscall | Bourne-Again shell script text executable, ASCII text | script | topsyscall(1m) | USER COMMANDS | topsyscall(1m) | version 0.90 | Jun 13, 2005 | topsyscall(1m) | ||
/usr/bin/topsysproc | POSIX shell script text executable, ASCII text | script | topsysproc(1m) | USER COMMANDS | topsysproc(1m) | version 0.90 | Jun 13, 2005 | topsysproc(1m) | ||
/usr/bin/touch | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Berkeley,Copyright | TOUCH(1) | BSD General Commands Manual | TOUCH(1) | BSD | April 28, 1995 | BSD | |
/usr/bin/tput | Mach-O 64-bit executable x86_64 | ncurses | tput(1) | tput(1) | tput(1) | |||||
/usr/bin/tr | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Apple | TR(1) | BSD General Commands Manual | TR(1) | BSD | July 23, 2004 | BSD | |
/usr/bin/trace | Mach-O universal binary with 2 architectures | system_cmds | Apple | TRACE(1) | BSD General Commands Manual | TRACE(1) | Mac OS X | April 3, 2015 | Mac OS X | |
/usr/bin/traptoemail | a /usr/bin/perl script text executable, ASCII text | script | traptoemail(1) | Net-SNMP | traptoemail(1) | V5.6.2.1 | 16 Nov 2006 | traptoemail(1) | ||
/usr/bin/treereg | a /usr/bin/perl script text executable, ASCII text | script | TREEREG(1) | User Contributed Perl Documentation | TREEREG(1) | perl v5.18.2 | 2009-11-06 | TREEREG(1) | ||
/usr/bin/treereg5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | TREEREG(1) | User Contributed Perl Documentation | TREEREG(1) | perl v5.16.3 | 2009-11-06 | TREEREG(1) | ||
/usr/bin/treereg5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | TREEREG(1) | User Contributed Perl Documentation | TREEREG(1) | perl v5.18.2 | 2009-11-06 | TREEREG(1) | ||
/usr/bin/trimforce | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/troff | Mach-O 64-bit executable x86_64 | Apple,GNU | TROFF(1) | TROFF(1) | Groff Version 1.19.2 | 13 October 2003 | TROFF(1) | |||
/usr/bin/true | Mach-O 64-bit executable x86_64 | shell_cmds | TRUE(1) | BSD General Commands Manual | TRUE(1) | BSD | June 27, 1991 | BSD | ||
/usr/bin/tset | Mach-O 64-bit executable x86_64 | ncurses | tset(1) | tset(1) | tset(1) | |||||
/usr/bin/tsort | Mach-O 64-bit executable x86_64 | misc_cmds | FreeBSD,Copyright | TSORT(1) | BSD General Commands Manual | TSORT(1) | BSD | April 1, 1994 | BSD | |
/usr/bin/tty | Mach-O 64-bit executable x86_64 | adv_cmds | FreeBSD | TTY(1) | BSD General Commands Manual | TTY(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/type | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/ul | Mach-O 64-bit executable x86_64 | text_cmds | UL(1) | BSD General Commands Manual | UL(1) | BSD | August 4, 2004 | BSD | ||
/usr/bin/ulimit | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/umask | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/unalias | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/uname | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Unix | UNAME(1) | BSD General Commands Manual | UNAME(1) | BSD | November 9, 1998 | BSD | |
/usr/bin/uncompress | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Copyright | COMPRESS(1) | BSD General Commands Manual | COMPRESS(1) | BSD | May 17, 2002 | BSD | |
/usr/bin/unexpand | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | EXPAND(1) | BSD General Commands Manual | EXPAND(1) | BSD | October 13, 2006 | BSD | |
/usr/bin/unifdef | Mach-O 64-bit executable x86_64 | Shim | UNIFDEF(1) | BSD General Commands Manual | UNIFDEF(1) | BSD | March 11, 2010 | BSD | ||
/usr/bin/unifdefall | Mach-O 64-bit executable x86_64 | Shim | UNIFDEF(1) | BSD General Commands Manual | UNIFDEF(1) | BSD | March 11, 2010 | BSD | ||
/usr/bin/uniq | Mach-O 64-bit executable x86_64 | text_cmds | UNIQ(1) | BSD General Commands Manual | UNIQ(1) | BSD | July 3, 2004 | BSD | ||
/usr/bin/units | Mach-O 64-bit executable x86_64 | misc_cmds | Copyright | UNITS(1) | BSD General Commands Manual | UNITS(1) | BSD | July 14, 1993 | BSD | |
/usr/bin/unpack200 | Mach-O universal binary with 2 architectures | Apple | unpack200(1) | unpack200(1) | 14 July 2004 | unpack200(1) | ||||
/usr/bin/UnRezWack | Mach-O 64-bit executable x86_64 | Shim | UNREZWACK(1) | BSD General Commands Manual | UNREZWACK(1) | Mac OS X | April 12, 2004 | Mac OS X | ||
/usr/bin/unvis | Mach-O 64-bit executable x86_64 | text_cmds | UNVIS(1) | BSD General Commands Manual | UNVIS(1) | BSD | June 6, 1993 | BSD | ||
/usr/bin/unzip | Mach-O 64-bit executable x86_64 | Darwin,Apple,Unix,Copyright | UNZIP(1L) | UNZIP(1L) | Info-ZIP | 20 April 2009 (v6.0) | UNZIP(1L) | |||
/usr/bin/unzipsfx | Mach-O 64-bit executable x86_64 | UNZIPSFX(1L) | UNZIPSFX(1L) | Info-ZIP | 20 April 2009 (v6.0) | UNZIPSFX(1L) | ||||
/usr/bin/update_dyld_shared_cache | Mach-O 64-bit executable x86_64 | dyld | Apple,Unix | |||||||
/usr/bin/uptime | Mach-O 64-bit executable x86_64 | shell_cmds | UPTIME(1) | BSD General Commands Manual | UPTIME(1) | BSD | April 18, 1994 | BSD | ||
/usr/bin/usbkdp | Mach-O 64-bit executable x86_64 | Apple | usbkdp(1) | BSD General Commands Manual | usbkdp(1) | Mac OS X | March 3, 2016 | Mac OS X | ||
/usr/bin/users | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | USERS(1) | BSD General Commands Manual | USERS(1) | 3rd Berkeley Distribution | June 6, 1993 | 3rd Berkeley Distribution | |
/usr/bin/uucp | Mach-O 64-bit executable x86_64 | GNU,Copyright | uucp(1) | uucp(1) | Taylor UUCP 1.07 | uucp(1) | ||||
/usr/bin/uudecode | Mach-O 64-bit executable x86_64 | basic_cmds | UUENCODE(1) | BSD General Commands Manual | UUENCODE(1) | BSD | January 27, 2002 | BSD | ||
/usr/bin/uuencode | Mach-O 64-bit executable x86_64 | basic_cmds | UUENCODE(1) | BSD General Commands Manual | UUENCODE(1) | BSD | January 27, 2002 | BSD | ||
/usr/bin/uuidgen | Mach-O universal binary with 2 architectures | CoreFoundation | UUIDGEN(1) | BSD General Commands Manual | UUIDGEN(1) | Mac OS X | July 1, 2005 | Mac OS X | ||
/usr/bin/uulog | Mach-O 64-bit executable x86_64 | GNU,Copyright | uulog(1) | uulog(1) | Taylor UUCP 1.07 | uulog(1) | ||||
/usr/bin/uuname | Mach-O 64-bit executable x86_64 | GNU,Copyright | uuname(1) | uuname(1) | Taylor UUCP 1.07 | uuname(1) | ||||
/usr/bin/uupick | Mach-O 64-bit executable x86_64 | GNU,Copyright | uupick(8) | uupick(8) | Taylor UUCP 1.07 | uupick(8) | ||||
/usr/bin/uustat | Mach-O 64-bit executable x86_64 | GNU,Copyright | uustat(1) | uustat(1) | Taylor UUCP 1.07 | uustat(1) | ||||
/usr/bin/uuto | POSIX shell script text executable, ASCII text | script | uuto(1) | uuto(1) | Taylor UUCP 1.07 | uuto(1) | ||||
/usr/bin/uux | Mach-O 64-bit executable x86_64 | GNU,Copyright | uux(1) | uux(1) | Taylor UUCP 1.07 | uux(1) | ||||
/usr/bin/vi | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIM(1) | VIM(1) | 2006 Apr 11 | VIM(1) | |||
/usr/bin/view | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIM(1) | VIM(1) | 2006 Apr 11 | VIM(1) | |||
/usr/bin/vim | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIM(1) | VIM(1) | 2006 Apr 11 | VIM(1) | |||
/usr/bin/vimdiff | Mach-O 64-bit executable x86_64 | vim | BSD,Apple,Unix,Linux,Copyright | VIMDIFF(1) | VIMDIFF(1) | 2001 March 30 | VIMDIFF(1) | |||
/usr/bin/vimtutor | POSIX shell script text executable, ASCII text | script | VIMTUTOR(1) | VIMTUTOR(1) | 2001 April 2 | VIMTUTOR(1) | ||||
/usr/bin/vis | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | VIS(1) | BSD General Commands Manual | VIS(1) | BSD | June 25, 2004 | BSD | |
/usr/bin/vm_stat | Mach-O universal binary with 2 architectures | system_cmds | VM_STAT(1) | BSD General Commands Manual | VM_STAT(1) | Mac OS X | August 13, 1997 | Mac OS X | ||
/usr/bin/vmmap | Mach-O 64-bit executable x86_64 | SamplingTools | Apple | vmmap(1) | BSD General Commands Manual | vmmap(1) | BSD | June 14, 2016 | BSD | |
/usr/bin/vmmap32 | Mach-O executable i386 | SamplingTools | Apple | vmmap(1) | BSD General Commands Manual | vmmap(1) | BSD | June 14, 2016 | BSD | |
/usr/bin/w | Mach-O 64-bit executable x86_64 | shell_cmds | W(1) | BSD General Commands Manual | W(1) | BSD | June 6, 1993 | BSD | ||
/usr/bin/wait | POSIX shell script text executable, ASCII text | script | BUILTIN(1) | BSD General Commands Manual | BUILTIN(1) | BSD | February 23, 2005 | BSD | ||
/usr/bin/wall | setgid Mach-O 64-bit executable x86_64 | FreeBSD,Berkeley,Copyright | WALL(1) | BSD General Commands Manual | WALL(1) | BSD | July 17, 2004 | BSD | ||
/usr/bin/wc | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD | WC(1) | BSD General Commands Manual | WC(1) | BSD | February 23, 2005 | BSD | |
/usr/bin/wdutil | Mach-O 64-bit executable x86_64 | Apple | ||||||||
/usr/bin/weblatency.d | a /usr/sbin/dtrace -s script text executable, ASCII text | script | weblatency.d(1m) | USER COMMANDS | weblatency.d(1m) | version 0.60 | Nov 30, 2005 | weblatency.d(1m) | ||
/usr/bin/what | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | WHAT(1) | BSD General Commands Manual | WHAT(1) | 4th Berkeley Distribution | June 6, 1993 | 4th Berkeley Distribution | |
/usr/bin/whatis | POSIX shell script text executable, ASCII text | script | whatis(1) | whatis(1) | September 19, 2005 | whatis(1) | ||||
/usr/bin/whereis | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | WHEREIS(1) | BSD General Commands Manual | WHEREIS(1) | BSD | April 27, 1995 | BSD | |
/usr/bin/which | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | WHICH(1) | BSD General Commands Manual | WHICH(1) | BSD | June 21, 2002 | BSD | |
/usr/bin/who | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | WHO(1) | BSD General Commands Manual | WHO(1) | BSD | January 17, 2007 | BSD | |
/usr/bin/whoami | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD | WHOAMI(1) | BSD General Commands Manual | WHOAMI(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/whois | Mach-O 64-bit executable x86_64 | adv_cmds | WHOIS(1) | BSD General Commands Manual | WHOIS(1) | BSD | June 14, 2004 | BSD | ||
/usr/bin/wish | POSIX shell script text executable, ASCII text | script | wish(1) | Tk Applications | wish(1) | Tk | 8.0 | wish(1) | ||
/usr/bin/wish8.4 | POSIX shell script text executable, ASCII text | script | wish(1) | Tk Applications | wish(1) | Tk | 8.0 | wish(1) | ||
/usr/bin/wish8.5 | POSIX shell script text executable, ASCII text | script | wish(1) | Tk Applications | wish(1) | Tk | 8.0 | wish(1) | ||
/usr/bin/write | setgid Mach-O 64-bit executable x86_64 | basic_cmds | FreeBSD | WRITE(1) | BSD General Commands Manual | WRITE(1) | BSD | June 6, 1993 | BSD | |
/usr/bin/wsgen | Mach-O universal binary with 2 architectures | Apple | wsgen(1) | wsgen(1) | 07 Aug 2006 | wsgen(1) | ||||
/usr/bin/wsimport | Mach-O universal binary with 2 architectures | Apple | wsimport(1) | wsimport(1) | 07 Aug 2006 | wsimport(1) | ||||
/usr/bin/xar | Mach-O 64-bit executable x86_64 | xar | XAR(1) | User Commands | XAR(1) | version 1.8 | June 4, 2015 | XAR(1) | ||
/usr/bin/xargs | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Unix | XARGS(1) | BSD General Commands Manual | XARGS(1) | BSD | August 2, 2004 | BSD | |
/usr/bin/xattr | a /usr/bin/python script text executable, ASCII text | script | XATTR(1) | BSD General Commands Manual | XATTR(1) | BSD | Nov 29, 2010 | BSD | ||
/usr/bin/xattr-2.6 | a /System/Library/Frameworks/Python.framework/Versions/2.6/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/xattr-2.7 | a /System/Library/Frameworks/Python.framework/Versions/2.7/Resour script text executable, ASCII text | script | ||||||||
/usr/bin/xcode-select | Mach-O 64-bit executable x86_64 | BSD,Apple | XCODE-SELECT(1) | BSD General Commands Manual | XCODE-SELECT(1) | Mac OS X | March 08, 2016 | XCODE-SELECT(1) | ||
/usr/bin/xcodebuild | Mach-O 64-bit executable x86_64 | Shim | XCODEBUILD(1) | BSD General Commands Manual | XCODEBUILD(1) | macOS | June 20, 2016 | macOS | ||
/usr/bin/xcrun | Mach-O 64-bit executable x86_64 | XCRUN(1) | BSD General Commands Manual | XCRUN(1) | Mac OS X | July 09, 2015 | XCRUN(1) | |||
/usr/bin/xcscontrol | Mach-O 64-bit executable x86_64 | Shim | XCSCONTROL(1) | XCSCONTROL(1) | October 2014 | XCSCONTROL(1) | ||||
/usr/bin/xcsdiagnose | Mach-O 64-bit executable x86_64 | Shim | ||||||||
/usr/bin/xed | Mach-O 64-bit executable x86_64 | Shim | XED(1) | BSD General Commands Manual | XED(1) | Mac OS X | March 19, 2015 | Mac OS X | ||
/usr/bin/xgettext.pl | a /usr/bin/perl script text executable, ASCII text | script | XGETTEXT(1) | User Contributed Perl Documentation | XGETTEXT(1) | perl v5.18.2 | 2014-02-03 | XGETTEXT(1) | ||
/usr/bin/xgettext5.16.pl | a /usr/bin/perl5.16 script text executable, ASCII text | script | ||||||||
/usr/bin/xgettext5.18.pl | a /usr/bin/perl5.18 script text executable, ASCII text | script | ||||||||
/usr/bin/xip | Mach-O 64-bit executable x86_64 | xiptool | xip(1) | BSD General Commands Manual | xip(1) | Mac OS | September 23, 2011 | Mac OS | ||
/usr/bin/xjc | Mach-O universal binary with 2 architectures | Apple | xjc(1) | xjc(1) | 07 Aug 2006 | xjc(1) | ||||
/usr/bin/xml2-config | POSIX shell script text executable, ASCII text | script | GNOME-XML(1) | 1.1.0 | GNOME-XML(1) | Version | 3 July 1999 | GNOME-XML(1) | ||
/usr/bin/xml2man | Mach-O 64-bit executable x86_64 | Shim | XML2MAN(1) | BSD General Commands Manual | XML2MAN(1) | Darwin | August 28, 2002 | Darwin | ||
/usr/bin/xmlcatalog | Mach-O universal binary with 2 architectures | XMLCATALOG(1) | xmlcatalog Manual | XMLCATALOG(1) | libxml2 | $Date$ | XMLCATALOG(1) | |||
/usr/bin/xmllint | Mach-O universal binary with 2 architectures | XMLLINT(1) | xmllint Manual | XMLLINT(1) | libxml2 | $Date$ | XMLLINT(1) | |||
/usr/bin/xpath | a /usr/bin/perl script text executable, ASCII text | script | ||||||||
/usr/bin/xpath5.16 | a /usr/bin/perl5.16 -w script text executable, ASCII text | script | ||||||||
/usr/bin/xpath5.18 | a /usr/bin/perl5.18 -w script text executable, ASCII text | script | ||||||||
/usr/bin/xslt-config | POSIX shell script text executable, ASCII text | script | ||||||||
/usr/bin/xsltproc | Mach-O universal binary with 2 architectures | |||||||||
/usr/bin/xsubpp | a /usr/bin/perl script text executable, ASCII text | script | XSUBPP(1) | Perl Programmers Reference Guide | XSUBPP(1) | perl v5.24.0 | 2016-11-12 | XSUBPP(1) | ||
/usr/bin/xsubpp5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | XSUBPP(1) | Perl Programmers Reference Guide | XSUBPP(1) | perl v5.16.3 | 2016-07-30 | XSUBPP(1) | ||
/usr/bin/xsubpp5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | XSUBPP(1) | Perl Programmers Reference Guide | XSUBPP(1) | perl v5.18.2 | 2016-07-30 | XSUBPP(1) | ||
/usr/bin/xxd | Mach-O 64-bit executable x86_64 | vim | XXD(1) | XXD(1) | Manual page for xxd | August 1996 | XXD(1) | |||
/usr/bin/yacc | Mach-O 64-bit executable x86_64 | Shim | YACC(1) | BSD General Commands Manual | YACC(1) | Darwin | May 8, 2005 | Darwin | ||
/usr/bin/yes | Mach-O 64-bit executable x86_64 | shell_cmds | FreeBSD,Copyright | YES(1) | BSD General Commands Manual | YES(1) | 4th Berkeley Distribution | June 6, 1993 | 4th Berkeley Distribution | |
/usr/bin/ypcat | Mach-O 64-bit executable x86_64 | FreeBSD | YPCAT(1) | BSD General Commands Manual | YPCAT(1) | BSD | December 3, 1993 | BSD | ||
/usr/bin/ypmatch | Mach-O 64-bit executable x86_64 | YPMATCH(1) | BSD General Commands Manual | YPMATCH(1) | BSD | December 3, 1993 | BSD | |||
/usr/bin/ypwhich | Mach-O 64-bit executable x86_64 | FreeBSD | YPWHICH(1) | BSD General Commands Manual | YPWHICH(1) | BSD | February 23, 1994 | BSD | ||
/usr/bin/zcat | Mach-O 64-bit executable x86_64 | file_cmds | FreeBSD,Apple,Unix,Copyright | GZIP(1) | BSD General Commands Manual | GZIP(1) | BSD | October 9, 2011 | BSD | |
/usr/bin/zcmp | POSIX shell script text executable, ASCII text | script | ZDIFF(1) | BSD General Commands Manual | ZDIFF(1) | BSD | May 23, 2011 | BSD | ||
/usr/bin/zdiff | POSIX shell script text executable, ASCII text | script | ZDIFF(1) | BSD General Commands Manual | ZDIFF(1) | BSD | May 23, 2011 | BSD | ||
/usr/bin/zegrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/zfgrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/zforce | POSIX shell script text executable, ASCII text | script | ZFORCE(1) | BSD General Commands Manual | ZFORCE(1) | BSD | January 26, 2007 | BSD | ||
/usr/bin/zgrep | Mach-O 64-bit executable x86_64 | text_cmds | FreeBSD,Unix | GREP(1) | BSD General Commands Manual | GREP(1) | BSD | July 28, 2010 | BSD | |
/usr/bin/zip | Mach-O 64-bit executable x86_64 | Apple,Unix,Copyright | ZIP(1L) | ZIP(1L) | Info-ZIP | 16 June 2008 (v3.0) | ZIP(1L) | |||
/usr/bin/zipcloak | Mach-O 64-bit executable x86_64 | Apple,Unix,Copyright | zipcloak(1) | zipcloak(1) | v3.0 of 8 May 2008 | zipcloak(1) | ||||
/usr/bin/zipdetails | a /usr/bin/perl script text executable, ASCII text | script | ZIPDETAILS(1) | Perl Programmers Reference Guide | ZIPDETAILS(1) | perl v5.24.0 | 2016-11-12 | ZIPDETAILS(1) | ||
/usr/bin/zipdetails5.16 | a /usr/bin/perl5.16 script text executable, ASCII text | script | ZIPDETAILS(1) | Perl Programmers Reference Guide | ZIPDETAILS(1) | perl v5.16.3 | 2016-07-30 | ZIPDETAILS(1) | ||
/usr/bin/zipdetails5.18 | a /usr/bin/perl5.18 script text executable, ASCII text | script | ZIPDETAILS(1) | Perl Programmers Reference Guide | ZIPDETAILS(1) | perl v5.18.2 | 2016-07-30 | ZIPDETAILS(1) | ||
/usr/bin/zipgrep | POSIX shell script text executable, ASCII text | script | ZIPGREP(1L) | ZIPGREP(1L) | Info-ZIP | 20 April 2009 | ZIPGREP(1L) | |||
/usr/bin/zipinfo | Mach-O 64-bit executable x86_64 | Darwin,Apple,Unix,Copyright | ZIPINFO(1L) | ZIPINFO(1L) | Info-ZIP | 20 April 2009 (v3.0) | ZIPINFO(1L) | |||
/usr/bin/zipnote | Mach-O 64-bit executable x86_64 | Apple,Unix,Copyright | zipnote(1) | zipnote(1) | v3.0 of 8 May 2008 | zipnote(1) | ||||
/usr/bin/zipsplit | Mach-O 64-bit executable x86_64 | Apple,Unix,Copyright | zipnote(1) | zipnote(1) | v3.0 of 8 May 2008 | zipnote(1) | ||||
/usr/bin/zless | POSIX shell script text executable, ASCII text | script | ZMORE(1) | BSD General Commands Manual | ZMORE(1) | BSD | February 6, 2011 | BSD | ||
/usr/bin/zmore | POSIX shell script text executable, ASCII text | script | ZMORE(1) | BSD General Commands Manual | ZMORE(1) | BSD | February 6, 2011 | BSD | ||
/usr/bin/znew | POSIX shell script text executable, ASCII text | script | ZNEW(1) | BSD General Commands Manual | ZNEW(1) | BSD | January 26, 2007 | BSD | ||
/usr/bin/zprint | Mach-O universal binary with 2 architectures | system_cmds | BSD | ZPRINT(1) | BSD General Commands Manual | ZPRINT(1) | Mac OS X | 2 May 2016 | Mac OS X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment