├── .gitignore ├── README.md ├── functions ├── Bash │ ├── README.md │ ├── create_folder │ │ ├── README.md │ │ └── create_folder.sh │ ├── folder_hierachy_from_date │ │ ├── README.md │ │ └── folder_hierachy_from_date.sh │ ├── move_file_ftp │ │ ├── README.md │ │ └── move_file_ftp.sh │ ├── variables_script │ │ ├── README.md │ │ └── variables_script.sh │ ├── variables_sgr-escape-sequence │ │ ├── README.md │ │ └── variables_sgr-escape-sequence.sh │ └── variables_xattr-com-apple-FinderInfo │ │ ├── README.md │ │ └── variables_xattr-com-apple-FinderInfo.sh └── README.md ├── installer ├── README.md ├── installerCreateUser │ ├── README.md │ └── installerCreateUser └── installerCurrentUserEnvVarTMPDIR │ ├── README.md │ └── installerCurrentUserEnvVarTMPDIR ├── random ├── README.md ├── createWeblocWithCustomIcon │ ├── README.md │ └── createWeblocWithCustomIcon ├── dmgLoopDSCore │ ├── README.md │ └── dmgLoopDSCore ├── dmgLoopServerApp │ ├── README.md │ └── dmgLoopServerApp ├── modifyAuthorizationDB │ ├── README.md │ └── modifyAuthorizationDB ├── modifyNetworkServiceDelete │ ├── README.md │ └── modifyNetworkServiceDelete ├── modifyNetworkServiceEnabled │ ├── README.md │ └── modifyNetworkServiceEnabled ├── modifyNetworkServiceIPv6 │ ├── README.md │ └── modifyNetworkServiceIPv6 ├── modifyNetworkServiceOrder │ ├── README.md │ └── modifyNetworkServiceOrder ├── printDHCPOptions │ ├── README.md │ └── printDHCPOptions ├── printSIPStatus │ ├── README.md │ └── printSIPStatus ├── printUserWithMostLoggedInTime │ ├── README.md │ └── printUserWithMostLoggedInTime ├── reconnectWiFiNetwork │ ├── README.md │ ├── com.github.erikberglund.reconnectWiFiNetwork.plist │ └── reconnectWiFiNetwork └── saveUserPictureToFile │ ├── README.md │ └── saveUserPictureToFile ├── snippets ├── README.md ├── macos_certificates.md ├── macos_diskimages.md ├── macos_finder.md ├── macos_hardware.md ├── macos_netboot.md ├── macos_network.md └── macos_os.md └── tools ├── README.md ├── jekyllServe ├── README.md └── jekyllServe ├── letsEncryptJSS ├── README.md └── letsEncryptJSS ├── modelUTIInfo ├── README.md └── modelUTIInfo.py ├── osxImageModifier ├── README.md ├── osxImageModifier └── osxImageModifierScript.bash ├── osxInstallerArchiver ├── README.md └── osxInstallerArchiver ├── privilegedHelperToolReset ├── README.md └── privilegedHelperToolReset ├── privilegedHelperToolStatus ├── README.md └── privilegedHelperToolStatus ├── resetVMWare └── resetVMWare.bash ├── serverAppArchiver ├── README.md └── serverAppArchiver ├── sharedLibraryDependencyChecker ├── README.md └── sharedLibraryDependencyChecker └── uninstallAST ├── README.md └── uninstallAST /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/README.md -------------------------------------------------------------------------------- /functions/Bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/README.md -------------------------------------------------------------------------------- /functions/Bash/create_folder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/create_folder/README.md -------------------------------------------------------------------------------- /functions/Bash/create_folder/create_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/create_folder/create_folder.sh -------------------------------------------------------------------------------- /functions/Bash/folder_hierachy_from_date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/folder_hierachy_from_date/README.md -------------------------------------------------------------------------------- /functions/Bash/folder_hierachy_from_date/folder_hierachy_from_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/folder_hierachy_from_date/folder_hierachy_from_date.sh -------------------------------------------------------------------------------- /functions/Bash/move_file_ftp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/move_file_ftp/README.md -------------------------------------------------------------------------------- /functions/Bash/move_file_ftp/move_file_ftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/move_file_ftp/move_file_ftp.sh -------------------------------------------------------------------------------- /functions/Bash/variables_script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/variables_script/README.md -------------------------------------------------------------------------------- /functions/Bash/variables_script/variables_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/variables_script/variables_script.sh -------------------------------------------------------------------------------- /functions/Bash/variables_sgr-escape-sequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/variables_sgr-escape-sequence/README.md -------------------------------------------------------------------------------- /functions/Bash/variables_sgr-escape-sequence/variables_sgr-escape-sequence.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/variables_sgr-escape-sequence/variables_sgr-escape-sequence.sh -------------------------------------------------------------------------------- /functions/Bash/variables_xattr-com-apple-FinderInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/variables_xattr-com-apple-FinderInfo/README.md -------------------------------------------------------------------------------- /functions/Bash/variables_xattr-com-apple-FinderInfo/variables_xattr-com-apple-FinderInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/Bash/variables_xattr-com-apple-FinderInfo/variables_xattr-com-apple-FinderInfo.sh -------------------------------------------------------------------------------- /functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/functions/README.md -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/installer/README.md -------------------------------------------------------------------------------- /installer/installerCreateUser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/installer/installerCreateUser/README.md -------------------------------------------------------------------------------- /installer/installerCreateUser/installerCreateUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/installer/installerCreateUser/installerCreateUser -------------------------------------------------------------------------------- /installer/installerCurrentUserEnvVarTMPDIR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/installer/installerCurrentUserEnvVarTMPDIR/README.md -------------------------------------------------------------------------------- /installer/installerCurrentUserEnvVarTMPDIR/installerCurrentUserEnvVarTMPDIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/installer/installerCurrentUserEnvVarTMPDIR/installerCurrentUserEnvVarTMPDIR -------------------------------------------------------------------------------- /random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/README.md -------------------------------------------------------------------------------- /random/createWeblocWithCustomIcon/README.md: -------------------------------------------------------------------------------- 1 | ## createWeblocWithCustomIcon 2 | 3 | -------------------------------------------------------------------------------- /random/createWeblocWithCustomIcon/createWeblocWithCustomIcon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/createWeblocWithCustomIcon/createWeblocWithCustomIcon -------------------------------------------------------------------------------- /random/dmgLoopDSCore/README.md: -------------------------------------------------------------------------------- 1 | ## dmgLoopDSCore 2 | 3 | -------------------------------------------------------------------------------- /random/dmgLoopDSCore/dmgLoopDSCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/dmgLoopDSCore/dmgLoopDSCore -------------------------------------------------------------------------------- /random/dmgLoopServerApp/README.md: -------------------------------------------------------------------------------- 1 | ## dmgLoopServerApp 2 | 3 | -------------------------------------------------------------------------------- /random/dmgLoopServerApp/dmgLoopServerApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/dmgLoopServerApp/dmgLoopServerApp -------------------------------------------------------------------------------- /random/modifyAuthorizationDB/README.md: -------------------------------------------------------------------------------- 1 | ## modifyAuthorizationDB 2 | 3 | -------------------------------------------------------------------------------- /random/modifyAuthorizationDB/modifyAuthorizationDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/modifyAuthorizationDB/modifyAuthorizationDB -------------------------------------------------------------------------------- /random/modifyNetworkServiceDelete/README.md: -------------------------------------------------------------------------------- 1 | ## modifyNetworkServiceDelete 2 | 3 | -------------------------------------------------------------------------------- /random/modifyNetworkServiceDelete/modifyNetworkServiceDelete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/modifyNetworkServiceDelete/modifyNetworkServiceDelete -------------------------------------------------------------------------------- /random/modifyNetworkServiceEnabled/README.md: -------------------------------------------------------------------------------- 1 | ## modifyNetworkServiceEnabled 2 | 3 | -------------------------------------------------------------------------------- /random/modifyNetworkServiceEnabled/modifyNetworkServiceEnabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/modifyNetworkServiceEnabled/modifyNetworkServiceEnabled -------------------------------------------------------------------------------- /random/modifyNetworkServiceIPv6/README.md: -------------------------------------------------------------------------------- 1 | ## modifyNetworkServiceIPv6 2 | 3 | -------------------------------------------------------------------------------- /random/modifyNetworkServiceIPv6/modifyNetworkServiceIPv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/modifyNetworkServiceIPv6/modifyNetworkServiceIPv6 -------------------------------------------------------------------------------- /random/modifyNetworkServiceOrder/README.md: -------------------------------------------------------------------------------- 1 | ## modifyNetworkServiceOrder 2 | 3 | -------------------------------------------------------------------------------- /random/modifyNetworkServiceOrder/modifyNetworkServiceOrder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/modifyNetworkServiceOrder/modifyNetworkServiceOrder -------------------------------------------------------------------------------- /random/printDHCPOptions/README.md: -------------------------------------------------------------------------------- 1 | ## printDHCPOptions 2 | 3 | -------------------------------------------------------------------------------- /random/printDHCPOptions/printDHCPOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/printDHCPOptions/printDHCPOptions -------------------------------------------------------------------------------- /random/printSIPStatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/printSIPStatus/README.md -------------------------------------------------------------------------------- /random/printSIPStatus/printSIPStatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/printSIPStatus/printSIPStatus -------------------------------------------------------------------------------- /random/printUserWithMostLoggedInTime/README.md: -------------------------------------------------------------------------------- 1 | ## printUserWithMostLoggedInTime -------------------------------------------------------------------------------- /random/printUserWithMostLoggedInTime/printUserWithMostLoggedInTime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/printUserWithMostLoggedInTime/printUserWithMostLoggedInTime -------------------------------------------------------------------------------- /random/reconnectWiFiNetwork/README.md: -------------------------------------------------------------------------------- 1 | # reconnectWiFiNetwork 2 | -------------------------------------------------------------------------------- /random/reconnectWiFiNetwork/com.github.erikberglund.reconnectWiFiNetwork.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/reconnectWiFiNetwork/com.github.erikberglund.reconnectWiFiNetwork.plist -------------------------------------------------------------------------------- /random/reconnectWiFiNetwork/reconnectWiFiNetwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/reconnectWiFiNetwork/reconnectWiFiNetwork -------------------------------------------------------------------------------- /random/saveUserPictureToFile/README.md: -------------------------------------------------------------------------------- 1 | ## saveUserPictureToFile 2 | 3 | -------------------------------------------------------------------------------- /random/saveUserPictureToFile/saveUserPictureToFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/random/saveUserPictureToFile/saveUserPictureToFile -------------------------------------------------------------------------------- /snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/README.md -------------------------------------------------------------------------------- /snippets/macos_certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_certificates.md -------------------------------------------------------------------------------- /snippets/macos_diskimages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_diskimages.md -------------------------------------------------------------------------------- /snippets/macos_finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_finder.md -------------------------------------------------------------------------------- /snippets/macos_hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_hardware.md -------------------------------------------------------------------------------- /snippets/macos_netboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_netboot.md -------------------------------------------------------------------------------- /snippets/macos_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_network.md -------------------------------------------------------------------------------- /snippets/macos_os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/snippets/macos_os.md -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/jekyllServe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/jekyllServe/README.md -------------------------------------------------------------------------------- /tools/jekyllServe/jekyllServe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/jekyllServe/jekyllServe -------------------------------------------------------------------------------- /tools/letsEncryptJSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/letsEncryptJSS/README.md -------------------------------------------------------------------------------- /tools/letsEncryptJSS/letsEncryptJSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/letsEncryptJSS/letsEncryptJSS -------------------------------------------------------------------------------- /tools/modelUTIInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/modelUTIInfo/README.md -------------------------------------------------------------------------------- /tools/modelUTIInfo/modelUTIInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/modelUTIInfo/modelUTIInfo.py -------------------------------------------------------------------------------- /tools/osxImageModifier/README.md: -------------------------------------------------------------------------------- 1 | ## osxImageModifier 2 | 3 | -------------------------------------------------------------------------------- /tools/osxImageModifier/osxImageModifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/osxImageModifier/osxImageModifier -------------------------------------------------------------------------------- /tools/osxImageModifier/osxImageModifierScript.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/osxImageModifier/osxImageModifierScript.bash -------------------------------------------------------------------------------- /tools/osxInstallerArchiver/README.md: -------------------------------------------------------------------------------- 1 | ## osxInstallerArchiver 2 | 3 | -------------------------------------------------------------------------------- /tools/osxInstallerArchiver/osxInstallerArchiver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/osxInstallerArchiver/osxInstallerArchiver -------------------------------------------------------------------------------- /tools/privilegedHelperToolReset/README.md: -------------------------------------------------------------------------------- 1 | ## resetHelper 2 | 3 | -------------------------------------------------------------------------------- /tools/privilegedHelperToolReset/privilegedHelperToolReset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/privilegedHelperToolReset/privilegedHelperToolReset -------------------------------------------------------------------------------- /tools/privilegedHelperToolStatus/README.md: -------------------------------------------------------------------------------- 1 | ## privilegedHelperToolStatus 2 | 3 | -------------------------------------------------------------------------------- /tools/privilegedHelperToolStatus/privilegedHelperToolStatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/privilegedHelperToolStatus/privilegedHelperToolStatus -------------------------------------------------------------------------------- /tools/resetVMWare/resetVMWare.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/resetVMWare/resetVMWare.bash -------------------------------------------------------------------------------- /tools/serverAppArchiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/serverAppArchiver/README.md -------------------------------------------------------------------------------- /tools/serverAppArchiver/serverAppArchiver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/serverAppArchiver/serverAppArchiver -------------------------------------------------------------------------------- /tools/sharedLibraryDependencyChecker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/sharedLibraryDependencyChecker/README.md -------------------------------------------------------------------------------- /tools/sharedLibraryDependencyChecker/sharedLibraryDependencyChecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/sharedLibraryDependencyChecker/sharedLibraryDependencyChecker -------------------------------------------------------------------------------- /tools/uninstallAST/README.md: -------------------------------------------------------------------------------- 1 | ## uninstallAST -------------------------------------------------------------------------------- /tools/uninstallAST/uninstallAST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erikberglund/Scripts/HEAD/tools/uninstallAST/uninstallAST --------------------------------------------------------------------------------