mazzy.Powershell.Chunks 1.0.0

dotnet add package mazzy.Powershell.Chunks --version 1.0.0
NuGet\Install-Package mazzy.Powershell.Chunks -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="mazzy.Powershell.Chunks" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add mazzy.Powershell.Chunks --version 1.0.0
#r "nuget: mazzy.Powershell.Chunks, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install mazzy.Powershell.Chunks as a Cake Addin
#addin nuget:?package=mazzy.Powershell.Chunks&version=1.0.0

// Install mazzy.Powershell.Chunks as a Cake Tool
#tool nuget:?package=mazzy.Powershell.Chunks&version=1.0.0

Powershell.Chunks

Build status PowerShell Gallery NuGet

Powershell.Chunks is a Powershell cmdlet that splits an array into arrays each not exceeding the given size. The cmdlet preserve or reverse the order of elements depending on the sign of the parameter size.

Examples

'a','b','c','d','e' | Get-Chunk 2             # Returns @( @('a','b'), @('c','d'), @('e') )

Get-Chunk -3 -InputObject @(1,2,3,4,5,6,7,8)  # Returns @( @(8,7,6), @(5,4,3), @(2,1) )

More Examples.

Installation

Automatic install the module from the PowerShell Gallery:

Install-Module -Name Powershell.Chunks
Import-Module Powershell.Chunks

Automatic install the module from the NuGet.org:

nuget install mazzy.Powershell.Chunks

or manual:

  • Download and unblock the latest .zip file.
  • Extract the .zip into your $PSModulePath, e.g. ~\Documents\WindowsPowerShell\Modules.
  • Ensure the extracted folder is named Powershell.Chunks.
  • Set an execution policy to RemoteSigned or Unrestricted to execute not signed modules Set-ExecutionPolicy RemoteSigned.
  • Run Import-Module Permutation.

Changelog

License

This project is released under the licensed under the MIT License.

mazzy@mazzy.ru

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 867 8/16/2018