View test-pkg.sh
#!/bin/bash | |
node-inspector & | |
MONGO_URL=mongodb://localhost:27017/test NODE_OPTIONS='--debug' meteor test-packages ${1} --port 3010 |
View git-suir
#!/bin/bash | |
pushd "$(git rev-parse --show-toplevel)" | |
git submodule sync | |
git submodule update --init --recursive $* | |
popd |
View chmodr.sh
#!/bin/sh | |
# | |
# chmodr.sh | |
# | |
# author: Francis Byrne | |
# date: 2011/02/12 | |
# | |
# Generic Script for recursively setting permissions for directories and files | |
# to defined or default permissions using chmod. | |
# |