View inZoomMeeting.sh
This file contains 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
#!/bin/sh | |
#inZoomMeeting (20220214) Copyright (c) 2021 Joel Bruner (https://github.com/brunerd) | |
#Licensed under the MIT License | |
function inZoomMeeting { | |
#if this process exists, there is a meeting, return 0 (sucess), otherwise 1 (fail) | |
pgrep "CptHost" &>/dev/null && return 0 || return 1 | |
} | |
if inZoomMeeting; then |
View kcpasswordDecode.sh
This file contains 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
#!/bin/bash | |
#kcpasswordDecode (20220729) Copyright (c) 2021 Joel Bruner (https://github.com/brunerd) | |
#Licensed under the MIT License | |
#specify file as input | |
#kcpasswordDecode.sh /etc/kcpassword | |
#given a filepath XOR to the it back and truncate padding | |
function kcpasswordDecode() ( | |
filepath="${1}" |
View kcpasswordEncode.sh
This file contains 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
#!/bin/bash | |
#kcpasswordEncode (20220610) Copyright (c) 2021 Joel Bruner (https://github.com/brunerd) | |
#Licensed under the MIT License | |
#given a string creates data for /etc/kcpassword | |
function kcpasswordEncode () ( | |
#ascii string | |
thisString="${1}" |
View kcpasswordEncode_perl.sh
This file contains 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
#!/bin/bash | |
function kcpasswordEncode_perl { | |
local PASSWORD="${1}"; | |
#one-liner variation of Gavin Brock's kcpassword.pl | |
perl -ne 'sub kcpassword_xor { my ($pass)=@_; my @key=qw( 125 137 82 35 210 188 221 234 163 185 31 ); my $key=pack "C*", @key; my $key_len=length $key; for (my $n=0; $n<length($pass); $n+=$key_len) { substr($pass,$n,$key_len) ^= $key; }; return $pass; }; $userinput = $_; chomp ($userinput); print(kcpassword_xor($userinput));' <<< "${PASSWORD}" | |
} | |
kcpasswordEncode_perl "${1}" |
View CFAbsoluteTime_Unix_Epoch.sh
This file contains 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
#work with CFAbsoluteTime in shell | |
#https://developer.apple.com/documentation/corefoundation/cfabsolutetime | |
#https://developer.apple.com/documentation/corefoundation/1543542-cfabsolutetimegetcurrent | |
#get epoch time for CFAbsoluteTime 0 (978307200) | |
#same as the constant kCFAbsoluteTimeIntervalSince1970 in https://github.com/opensource-apple/CF/blob/master/CFDate.c | |
/bin/date -j -f "%b %d %T %Z %Y" "Jan 1 00:00:00 GMT 2001" "+%s" | |
#Now in CFAbsoluteTime | |
echo $(( $(date +"%s") - 978307200 )) |
View macOSScreenLockDetection.sh
This file contains 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
#!/bin/sh | |
#Joel Bruner (https://github.com/brunerd) | |
function screenIsLocked { [ "$(/usr/libexec/PlistBuddy -c "print :IOConsoleUsers:0:CGSSessionScreenIsLocked" /dev/stdin 2>/dev/null <<< "$(ioreg -n Root -d1 -a)")" = "true" ] && return 0 || return 1; } | |
function screenIsUnlocked { [ "$(/usr/libexec/PlistBuddy -c "print :IOConsoleUsers:0:CGSSessionScreenIsLocked" /dev/stdin 2>/dev/null <<< "$(ioreg -n Root -d1 -a)")" != "true" ] && return 0 || return 1; } | |
if screenIsLocked; then | |
echo "Screen locked" | |
fi |
View macOSCompatibilityMatrix.csv
This file contains 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
ModelID | 10.4 | 10.5 | 10.6 | 10.7 | 10.8 | 10.9 | 10.10 | 10.11 | 10.12 | 10.13 | 10.14 | 10.15 | 11 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
iMac4,1 | 10.4 | 10.5 | 10.6 | |||||||||||
iMac4,2 | 10.4 | 10.5 | 10.6 | |||||||||||
iMac5,1 | 10.4 | 10.5 | 10.6 | 10.7 | ||||||||||
iMac5,2 | 10.4 | 10.5 | 10.6 | 10.7 | ||||||||||
iMac6,1 | 10.4 | 10.5 | 10.6 | 10.7 | ||||||||||
iMac7,1 | 10.4 | 10.5 | 10.6 | 10.7 | 10.8 | 10.9 | 10.10 | 10.11 | ||||||
iMac8,1 | 10.5 | 10.6 | 10.7 | 10.8 | 10.9 | 10.10 | 10.11 | |||||||
iMac9,1 | 10.5 | 10.6 | 10.7 | 10.8 | 10.9 | 10.10 | 10.11 | |||||||
iMac10,1 | 10.6 | 10.7 | 10.8 | 10.9 | 10.10 | 10.11 | 10.12 | 10.13 |
View csv2csv.function.min.no_help.sh
This file contains 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
#!/bin/sh | |
# csv2csv.function.min.no_help | |
# csv2csv by Lorance Stinson, 2007 | |
# This file is in the public domain. | |
# For more information email LoranceStinson+csv@gmail.com. | |
# Or see http://lorance.freeshell.org/csvutils/ | |
# Additions by Joel Bruner, 2020 (https://github.com/brunerd) | |
#csv2csv function minified | |
function csv2csv { IFS=$' \t\n'; local NL=$'\n'; local TAB=$'\t';local CSV_ESCAPE=${CSV_ESCAPE:='"'}; local CSV_SEPARATOR=${CSV_SEPARATOR:=","}; local CSV_QUOTE=${CSV_QUOTE:='"'}; local OCSV_ESCAPE=${CSV_ESCAPE:='"'}; local OCSV_SEPARATOR=${CSV_SEPARATOR:=","}; local OCSV_QUOTE=${CSV_QUOTE:='"'}; local FILE="-"; local NL_TEXT=""; local NUM_COLS=""; local OUTPUT=""; local QUOTE_LEVEL="0"; local SKIP_ROWS="0"; local TAB_TEXT=""; while [ "$#" -gt 0 ] ; do case "$1" in -c) [ "$2" ] && local COL_LIST="$2" || usage="$1 requires an argument."; shift 2;; -e) [ "$2" ] && CSV_ESCAPE="$2" || usage="$1 requires an argument."; shift 2;; -E) [ "$2" ] && OCSV_ESCAPE="$2" || usage="$1 requires an argument."; shift 2;; -h |
View csv2csv.function.min.sh
This file contains 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
#!/bin/sh | |
# csv2csv.function.min | |
# csv2csv by Lorance Stinson, 2007 | |
# This file is in the public domain. | |
# For more information email LoranceStinson+csv@gmail.com. | |
# Or see http://lorance.freeshell.org/csvutils/ | |
# Additions by Joel Bruner, 2020 (https://github.com/brunerd) | |
#csv2csv function minified | |
function csv2csv { IFS=$' \t\n'; local NL=$'\n'; local TAB=$'\t';local CSV_ESCAPE=${CSV_ESCAPE:='"'}; local CSV_SEPARATOR=${CSV_SEPARATOR:=","}; local CSV_QUOTE=${CSV_QUOTE:='"'}; local OCSV_ESCAPE=${CSV_ESCAPE:='"'}; local OCSV_SEPARATOR=${CSV_SEPARATOR:=","}; local OCSV_QUOTE=${CSV_QUOTE:='"'}; local FILE="-"; local NL_TEXT=""; local NUM_COLS=""; local OUTPUT=""; local QUOTE_LEVEL="0"; local SKIP_ROWS="0"; local TAB_TEXT=""; while [ "$#" -gt 0 ] ; do case "$1" in -c) [ "$2" ] && local COL_LIST="$2" || usage="$1 requires an argument."; shift 2;; -e) [ "$2" ] && CSV_ESCAPE="$2" || usage="$1 requires an argument."; shift 2;; -E) [ "$2" ] && OCSV_ESCAPE="$2" || usage="$1 requires an argument."; shift 2;; -h) usage= |
View Malformed-macOS-11.1.csv
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 5.
This file contains 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
Status,Issue Notes,Path,Error Output | |
ERROR,"""JSON Lines""/Concatenated",/System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/Resources/defaultConfig.json,"garbage after JSON object, at character offset 143 (before """"addTransform"":{""uui..."") at /usr/bin/json_pp5.28 line 44." | |
ERROR,*** Comment ***,/private/var/db/ionodecache.json,"malformed JSON string, neither array, object, number, string or atom, at character offset 0 (before ""*** Device Tree ***\n..."") at /usr/bin/json_pp5.28 line 44." | |
ERROR,# comment,/System/Library/CoreServices/Pass Viewer.app/Contents/Library/SharedWebCredentials/wallet.apple.com.json,"malformed JSON string, neither array, object, number, string or atom, at character offset 210 (before ""]\n }]\n }..."") at /usr/bin/json_pp5.28 line 44." | |
ERROR,# comment,/System/Library/Frameworks/GameController.framework/Versions/A/Resources/XboxHapticCapabilityGraph.json,"unexpected end of string while parsing JSON string, at character offset 500 (before "",\n {\ |
NewerOlder