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
#!/bin/bash | |
# Copies a file if and only if it is different | |
if [ "$(diff -q "${1}" "${2}" 2>&1 | wc -l)" -gt 0 ]; then cp "${1}" "${2}"; fi |
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
#!/bin/bash | |
function shutdown() | |
{ | |
# INSERT HERE THE COMMAND YOU WANT EXECUTE AT SHUTDOWN OR SERVICE UNLOAD | |
exit 0 | |
} | |
function startup() | |
{ |
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
#!/bin/bash | |
# Function to convert cidr to a mask | |
cidr2mask () { | |
# Number of args to shift, 255..255, first non-255 byte, zeroes | |
set -- $(( 5 - (${1} / 8) )) 255 255 255 255 $(( (255 << (8 - (${1} % 8))) & 255 )) 0 0 0 | |
[ ${1} -gt 1 ] && shift ${1} || shift | |
echo ${1-0}.${2-0}.${3-0}.${4-0} | |
} |
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
########### | |
# Helper script that adds the ability to point to a perforce workspace using git command line | |
# | |
#!/bin/bash | |
PARENT_BRANCH="$(git branch -r -a --merged | sed -nE 's|^[ \*]+remotes/origin/(master\|branches/.*)$|\1|p')" | |
[ -n "${PARENT_BRANCH}" -a "$(echo "${PARENT_BRANCH}" | wc -l)" -eq 2 ] && { | |
PARENT_BRANCH="$(echo "${PARENT_BRANCH}" | grep -v '^master$')" | |
} | |
[ -n "${PARENT_BRANCH}" -a "$(echo "${PARENT_BRANCH}" | wc -l)" -eq 1 ] || { |
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
########### | |
# Copies a kext to a temporary location and test loading it (to make sure that all | |
# library linkages are in place). This is a standalone script because in order | |
# for a kext to be loaded, it must have ownership of root:wheel - which requires | |
# root to change. | |
# | |
# This script will call sudo on itself if it is run as non-root. | |
# | |
# In order to prevent this script for prompting for a password (i.e. for use in | |
# continuous integration or for other cases where you are too lazy to type in |
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
#!/bin/bash | |
PFX="$(which brew &>/dev/null && brew --prefix || echo "/usr/local")" | |
if [ -n "${SSH_CONNECTION}" ]; then | |
exec "$(brew --prefix)/bin/rmate" -w "$@" | |
else | |
exec "$(brew --prefix)/bin/mate" -w "$@" | |
fi |
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
#!/bin/bash | |
# Script that will update all kinds of stuff (brews, casks, software updates, app store apps, etc) | |
set -o pipefail | |
# You can set any of these variables to "no" in your environment if you want to skip that particular portion | |
: ${SWUP_OS:="yes"} | |
: ${SWUP_BREW:="yes"} | |
: ${SWUP_MAS:="yes"} | |
: ${SWUP_BUNDLE:="yes"} | |
: ${SWUP_REMOVE_QUARANTINE:="yes"} |
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
########### | |
# Checks if the given cask needs to be upgraded. | |
# | |
#!/bin/bash | |
set -o pipefail | |
source /etc/profile | |
if [ $# -eq 0 ]; then | |
ARGS=($(brew cask list)) | |
else |
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
########### | |
# Adds "upgrade" to `brew cask`. Accepts "--greedy" as an option. Just delegates to "reinstall" | |
# | |
#!/bin/bash | |
set -o pipefail | |
source /etc/profile | |
GREEDY="" | |
if [ "${1}" == "--greedy" ]; then GREEDY="${1}"; shift; fi |
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
{ | |
"title": "Microsoft Remote Desktop", | |
"rules": [ | |
{ | |
"description": "Windows Mappings", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { "key_code": "x", "modifiers": { "mandatory": [ "command" ] } }, | |
"to": [ { "key_code": "x", "modifiers": [ "left_control" ] } ], |