The script below is triggered every day from my Mac. I use Hazel to move the tar.gz to an external hard disk once it's finished. This happens every day without me noticing.
You should have a similar script.
| <?php | |
| /** | |
| * Permutations | |
| * | |
| * Returns an array of strings containing all the | |
| * ($alphabet ^ $output_length) permutations | |
| * | |
| * @alphabet (string|array) set of at least two elements to choose from | |
| * @output_length (int) the number of elements in each output string | |
| * |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
The script below is triggered every day from my Mac. I use Hazel to move the tar.gz to an external hard disk once it's finished. This happens every day without me noticing.
You should have a similar script.