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
Install "sendEmail" | |
on OSX I did that with 'brew install sendemail' | |
on fedora/red hat 'yum sendEmail' should work too (not tested). | |
http://caspian.dotconf.net/menu/Software/SendEmail/ | |
Then use the script below and do this in the dir with your pdf's for the script (it will just take all *.pdf). |
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
# | |
# Copyright (C) 2006-2012 Sebastien Helleu <[email protected]> | |
# Copyright (C) 2011 Nils Görs <[email protected]> | |
# Copyright (C) 2011 ArZa <[email protected]> | |
# Copyright (C) 2013 Emmanuel Bernard <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. |
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 | |
# Clones your existing repo and run the maven tests off this clone | |
# Tests are run on the the current branch at the time of cloning | |
# | |
# Note that you can work on the next bug while this is going on as | |
# tests are run off a cloned repo. | |
# | |
# $ build.sh | |
# runs 'maven clean install' | |
# |
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
J_VERSIONS_DIRECTORY="/System/Library/Frameworks/JavaVM.framework/Versions" | |
J_COMMANDS_SUBPATH="Commands" | |
J_HOME_SUBPATH="Home" | |
function availableJVMs() | |
{ | |
ls -1 $J_VERSIONS_DIRECTORY | grep ^[0-9].[0-9] | |
} | |
function listJava() |
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 | |
#run ./build.sh on another terminal window | |
#it will clone your existing repo and run the maven tests off this clone | |
#the branch tests are run from is the current branch | |
# | |
# ./build.sh | |
#the cloned repo will live in ../DIRECTORY_ROOT/REPO_DIRECTORY | |
DIRECTORY_ROOT="../privatebuild/" |