|
|
|
|
|
by __MatrixMan__
449 days ago
|
|
In nushell you can use it to look up more detail about that command: > history | get 81201
╭─────────────────┬─────────────────────────────╮
│ start_timestamp │ 2025-03-26 05:16:58.184 UTC │
│ command │ echo hello world │
│ cwd │ /Users/matt │
│ duration │ 1ms │
│ exit_status │ 0 │
╰─────────────────┴─────────────────────────────╯
It's nice for confirming a suspicion that something is now slower than it used to be. |
|