v1 Online Demo: https://codesandbox.io/s/v1-angular-numeric-ljwlb
v2 Online Demo: https://codesandbox.io/s/v2-angular-numeric-3w2wr
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true)] | |
[string] $AzureDevOpsPAT, | |
[Parameter(Mandatory=$true)] | |
[string] $OrganizationName, | |
[Parameter(Mandatory=$true)] | |
[string] $teamProjectName, | |
[Parameter(Mandatory=$true)] |
v1 Online Demo: https://codesandbox.io/s/v1-angular-numeric-ljwlb
v2 Online Demo: https://codesandbox.io/s/v2-angular-numeric-3w2wr
$path = "C:\example" | |
$out = "C:\exampleout.txt" | |
Get-ChildItem $path -Filter *.sql| % { | |
$file = $_.Name | |
" " | Out-File -Append $out | |
"-----------------------------------" | Out-File -Append $out | |
"--${file}:" | Out-File -Append $out | |
" " | Out-File -Append $out | |
Get-Content $_.FullName | % { |