I am having some issues with the time command time
. It works fine but since time gives 3 numbers in output(real, user and sys) I was looking on how to get only the user time.
I found many posts that say to use /usr/bin/time -f "%U"
but I get this errors :
/usr/bin/time: illegal option -- f
usage: time [-lp] command.
I also can't find the option -f
when I type man time
I tried to skip it and write:/usr/bin/time "%U"
and I get %U: No such file or directory
I have installed GNU-time but nothing changed. what is the issue?