The Command Timer Application is a simple C++ program that allows you to execute a command from the command line and measures how long it takes for the command to complete. This can be useful for monitoring the execution time of various commands or scripts.
- Execute custom commands from the command line.
- Measure the execution time of the command.
- Display the execution time in seconds.
- C++ compiler (e.g., g++)
-
Clone this repository.
-
Open your terminal or command prompt.
-
Compile the C++ program using a C++ compiler:
g++ -o command_timer command_timer.cpp
-
Run the compiled program by providing the command you want to time as an argument:
./command_timer [your_command_here]
-
The program will execute the command and display the time it took for the command to complete.
- This project was inspired by the need to measure command execution times.
- Special thanks to the C++ community for providing the tools and resources necessary to create this simple utility.
Enjoy measuring the execution time of your commands!