Rename 'ptime' command to 'time' in help text

This commit is contained in:
Lluciocc 2026-05-12 18:33:08 +02:00 committed by GitHub
parent c275da6145
commit 078ad437a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,7 +38,7 @@ int main(int argc, char **argv) {
printf("clear - Clear the screen\n");
printf("exit - Exit the terminal\n");
printf("net - Network tools\n");
printf("ptime <cmd> - Measure command execution time\n");
printf("time <cmd> - Measure command execution time\n");
printf("\nHint: Use Ctrl+C to force quit any running application.\n");
return 0;
}