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 | |
# List the gems in the current bundle and their sizes | |
bundle list --paths | xargs du -s | sort -n | awk '{ print $2 $4 }' | xargs du -sh |
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 | |
# Simple script to check enviorment versions | |
osx_version="10.11.6" | |
dockermachine_version="0.7.0" | |
docker_version="1.11.2" | |
virtualbox_version="5.0.26" | |
echo -n 'Checking version of OSX... ' | |
if sw_vers -productVersion | grep -q $osx_version; |
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
xrandr --output HDMI1 --left-of VGA1 |