Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 624 Bytes

File metadata and controls

31 lines (20 loc) · 624 Bytes

Toml

Toml is a PowerShell module for reading TOML file content from disk so scripts can load and process configuration text.

Installation

Install the module from the PowerShell Gallery:

Install-PSResource -Name Toml
Import-Module -Name Toml

Capabilities

Use this command to read TOML content from a file path:

Get-Toml -Path '.\settings.toml'

Documentation

Documentation is published at psmodule.io/Toml.

Use PowerShell help and command discovery for details:

Get-Command -Module Toml
Get-Help -Name Get-Toml -Examples