time(1p)
equivalent
#123
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We need a utility that can test the length of time a line of shell takes to complete execution and output data formatted as ASV.
I think this should be a separate utility and not a shell built-in. This would just be an exec(2) and a couple timer calls, right? How precise does this need to be?
Would a simple wrapper around https://doc.rust-lang.org/std/time/struct.SystemTime.html suffice?
Having it be a shell builtin would not grant more precision, so I'd say yes. As for how precise, in bash, time outputs values in millisecond precision. It should achieve that at least.
From the doc:
So probably not. If the system clock changes while the command is running, the output would be erroneous. This ought to be used instead: https://doc.rust-lang.org/std/time/struct.Instant.html