en-US/about_PSNativeCmdDevKit.help.txt

TOPIC
    about_PSNativeCmdDevKit
 
SHORT DESCRIPTION
    Cross-platform helpers for invoking native commands and parsing their output.
 
LONG DESCRIPTION
    PSNativeCmdDevKit provides functions for implementing native command wrappers.
    It invokes executables with separate argument values, combines standard error
    with standard output, parses list-formatted output, and supports optional sudo
    preferences on Linux and macOS.
 
    Executable names and arguments are never compiled as PowerShell source. Sudo
    preference script blocks are retained and invoked directly so their original
    PowerShell language mode is preserved.
 
EXAMPLES
    PS /home/user> Invoke-NativeCommand -Executable 'lsb_release' -Parameters '--all' |
        Get-PropertyHashFromListOutput
 
NOTE:
    Thank you to everyone who contributes code, reviews, and feedback.
 
TROUBLESHOOTING NOTE:
    Review open issues and releases in the GitHub repository.
 
SEE ALSO
  - https://dsccommunity.org/
 
KEYWORDS
      Linux, Native, Windows, CLI, Command