Skip to content

Commit

Permalink
chore: Regenerate tips json file
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlydog committed May 21, 2024
1 parent c10e3d3 commit 1c0a249
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/tiPS/PowerShellTips.json
Original file line number Diff line number Diff line change
Expand Up @@ -649,5 +649,17 @@
"Category": 0,
"ExpiryDate": "9999-12-31T23:59:59.9999999",
"Author": "Daniel Schroeder (deadlydog)"
},
{
"CreatedDate": "2024-05-20T00:00:00",
"Title": "Use Get-ChildItem to easily see all environment variables",
"TipText": "Need to quickly see all of the environment variables on your system? Use the `Get-ChildItem` cmdlet with the `Env:` drive to easily list them all with their values.",
"Example": "# List all environment variables and their values.\r\nGet-ChildItem Env:\r\n\r\n# You can do the same thing using one of the aliases for Get-ChildItem.\r\ngci Env:\r\ndir Env:\r\n\r\n# List a specific environment variable. e.g. the PATH environment variable.\r\nGet-ChildItem Env:Path",
"Urls": [
"https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-childitem"
],
"Category": 3,
"ExpiryDate": "9999-12-31T23:59:59.9999999",
"Author": "Daniel Schroeder (deadlydog)"
}
]

0 comments on commit 1c0a249

Please sign in to comment.