Skip to content

Instantly share code, notes, and snippets.

@tsukanov-as
Created March 8, 2019 12:26
Show Gist options
  • Save tsukanov-as/939d51bab9a1df8ba80908f386db6806 to your computer and use it in GitHub Desktop.
Save tsukanov-as/939d51bab9a1df8ba80908f386db6806 to your computer and use it in GitHub Desktop.
$report = Select-String -Path .\history.mxl -Pattern "{`"#`"," | select Line
$ver = ""
for ($i = 0; $i -lt $report.count; $i++) {
if ($report[$i].Line.StartsWith("{`"#`",`"Version:`"}")) {
$raw = $report[$i+1].Line
$ver = $raw.Substring(6, $raw.Length - 8) -replace ","
}
}
$ver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment