You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skills can optionally define their output's formatting. Sometimes, the output doesn't quite match what the original author intended or maybe it's just better viewed by a user in another format. To override the default formatting, the command's output is piped (a la Bash) to a formatting skill whose noun matches the available options in the skill definition. Assuming values to "format" as "pre", "json", and "table", the skills must be Format-Pre, Format-JSON, and Format-Table. As with all skills, case doesn't matter.
Assuming List-Skills defaults to JSON formatting, List-Skills | Format-Table will instead render the list of objects as a table. List-Skills | Format-JSON will be equivalent to the default. List-Skills | Format-Pre will print dense JSON.
The text was updated successfully, but these errors were encountered:
Skills can optionally define their output's formatting. Sometimes, the output doesn't quite match what the original author intended or maybe it's just better viewed by a user in another format. To override the default formatting, the command's output is piped (a la Bash) to a formatting skill whose noun matches the available options in the skill definition. Assuming values to "format" as "pre", "json", and "table", the skills must be
Format-Pre
,Format-JSON
, andFormat-Table
. As with all skills, case doesn't matter.Assuming
List-Skills
defaults to JSON formatting,List-Skills | Format-Table
will instead render the list of objects as a table.List-Skills | Format-JSON
will be equivalent to the default.List-Skills | Format-Pre
will print dense JSON.The text was updated successfully, but these errors were encountered: