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
| # | |
| # Script to start, stop, restart Jekyll Dev Environment container | |
| # | |
| # Set default parameter set | |
| [cmdletbinding(DefaultParameterSetName='container')] | |
| # Intialize parameters | |
| param ( | |
| [Parameter(Mandatory = $true)] |
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
| # | |
| # Script to start, stop, restart Jekyll Dev Environment container | |
| # | |
| # Set default parameter set | |
| [cmdletbinding(DefaultParameterSetName='container')] | |
| # Intialize parameters | |
| param ( | |
| [Parameter(Mandatory = $true)] |
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
| Some Jenkinsfile examples |
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
| <# | |
| .SYNOPSIS | |
| Runs a select with on the specified table with the specified columns | |
| and writes the result to a CSV file. | |
| .DESCRIPTION | |
| This function calls the connection passed as a parameter and sends a | |
| SELECT command to it. The table on which the SELECT is run as well as | |
| the selected columns are passed as a parameter. | |
NewerOlder