One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
#!/usr/bin/env bash | |
# "unofficial" bash strict mode | |
# See: http://redsymbol.net/articles/unofficial-bash-strict-mode | |
set -o errexit # Exit when simple command fails 'set -e' | |
set -o errtrace # Exit on error inside any functions or subshells. | |
set -o nounset # Trigger error when expanding unset variables 'set -u' | |
set -o pipefail # Do not hide errors within pipes 'set -o pipefail' | |
IFS=$'\n\t' |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
#Requires -Version 4 | |
<# | |
.Notes | |
NAME: MyVeeamReport.ps1 | |
AUTHOR: [email protected] | |
CREATED: 22/02/2014 | |
LASTEDIT: 13/01/2016 | |
Chef client and server bootstrap scripts/configs for Ubuntu 12.04LTS Server amd64. |