I am currently using time command from the terminal to check how much time my java program took, using the following command.
time java -Djava.util.concurrent.ForkJoinPool.common.parallelism=40 TestingNumberOfThreads
// Result
real 0m4.356s
user 0m46.273s
sys 0m0.702s
Is there a way I can achieve the same from IntelliJ?