I'm trying to measure the execution time of a C program I wrote. However, I want to see a detailed output of different times, percent of CPU use, etc. I try
time -v ./a.out
But I get an error that states the command -v was not found. However, I have checked the man pages for time and -v or --verbose is an option.
What's wrong?