about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--snooze.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/snooze.c b/snooze.c
index ce6d93d..b88db77 100644
--- a/snooze.c
+++ b/snooze.c
@@ -327,6 +327,12 @@ int main(int argc, char *argv[])
 	if (argc == optind)
 		return 0;
 
+	if (vflag) {
+		now = time(0);
+		tm = localtime(&now);
+		printf("Starting execution at %s\n", isotime(tm));
+	}
+
 	execvp(argv[optind], argv+optind);
 	perror("execvp");
 	return 255;