time.txt (388B)
1 time 2 3 - Action: A shell built-in that measures how long the subsequent command takes to execute. 4 - Output: After the build finishes, it will print three values to the 5 terminal: 6 - real: The actual elapsed "wall clock" time. 7 - user: The amount of CPU time spent in user-mode. 8 - sys: The amount of CPU time spent in kernel-mode. 9 10 Example: 11 12 time wasm-pack build --target web