Last active
April 22, 2024 10:46
-
-
Save hansgafriedzal/e4e32230c02a861740cb5ba91c9afeb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$path = 'log.csv' | |
cat $path | select -First 1 > out.csv | |
cat $path | select -skip 1 | where { | |
$log = $_.Split(',') | |
$ts = [long] $log[0] | |
$elapsed = [long] $log[1] | |
Write-Progress -Activity $ts | |
$elapsed -gt 7000 | |
} | tee -FilePath .\out.csv -Append | |
Write-Progress -Completed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment