Skip to content

Commit

Permalink
New script to get env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
SamErde committed Jan 2, 2024
1 parent bbe5780 commit 4438194
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Get-EnvironmentVariables.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
function Get-EnvironmentVariable {
[CmdletBinding()]
[Alias("genv")]
param (

)

begin {

}

process {
Get-ChildItem env:
}

end {

}
}

0 comments on commit 4438194

Please sign in to comment.