7

Is there a way to run all commands in bash as if they were invoked with time in front? I want that I could type $ some_command and this will actually invoke $ time some_command.

Dror
  • 171

1 Answers1

0

Itself time command do it :

time ls
time gimp

But if you want to invoke time for each command, you can customize a script for yourself, you should run everything with it but it's not good way.

PersianGulf
  • 10,850