We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can start a timer:
start-mytimer xzy Name Start Duration Running Description ---- ----- -------- ------- ----------- xyz 10/24/2018 5:14:06 PM 00:00:00 True
if I run stop-mytimer the duration is maintained.
stop-mytimer
PS S:\> stop-mytimer xyz Name Start Duration Running Description ---- ----- -------- ------- ----------- xyz 10/24/2018 5:14:06 PM 00:00:43.6023795 False PS S:\> get-mytimer xyz Name Start Duration Running Description ---- ----- -------- ------- ----------- xyz 10/24/2018 5:14:06 PM 00:00:43.6023795 False
But if I start a timer and then pipe it and stop it, it doesn't.
PS S:\> start-mytimer zzz Name Start Duration Running Description ---- ----- -------- ------- ----------- zzz 10/24/2018 5:15:53 PM 00:00:00 True PS S:\> get-mytimer zzz | stop-mytimer Name Start Duration Running Description ---- ----- -------- ------- ----------- zzz 10/24/2018 5:15:53 PM 00:00:38.5946289 False PS S:\> get-mytimer zzz Name Start Duration Running Description ---- ----- -------- ------- ----------- zzz 10/24/2018 5:15:53 PM 00:00:00 False
The text was updated successfully, but these errors were encountered:
Updated in v0.7.0
Sorry, something went wrong.
No branches or pull requests
I can start a timer:
if I run
stop-mytimer
the duration is maintained.But if I start a timer and then pipe it and stop it, it doesn't.
The text was updated successfully, but these errors were encountered: