4f348c
diff --git a/vmstat.8 b/vmstat.8
4f348c
index fa0938c..fd1078f 100644
4f348c
--- a/vmstat.8
4f348c
+++ b/vmstat.8
4f348c
@@ -87,6 +87,9 @@ Display version information and exit.
4f348c
 .TP
4f348c
 \fB\-h\fR, \fB\-\-help\fR
4f348c
 Display help and exit.
4f348c
+.TP
4f348c
+\fB\-y\fR, \fB\-\-no-first\fR
4f348c
+Omits first report with statistics since system boot.
4f348c
 .PD
4f348c
 .SH "FIELD DESCRIPTION FOR VM MODE"
4f348c
 .SS
4f348c
diff --git a/vmstat.c b/vmstat.c
4f348c
index f2aa2f4..07496cd 100644
4f348c
--- a/vmstat.c
4f348c
+++ b/vmstat.c
4f348c
@@ -75,6 +75,9 @@ static int a_option;
4f348c
 /* "-w" means "wide output" */
4f348c
 static int w_option;
4f348c
 
4f348c
+/* "-y" means "skip first output" */
4f348c
+static int y_option;
4f348c
+
4f348c
 /* "-t" means "show timestamp" */
4f348c
 static int t_option;
4f348c
 
4f348c
@@ -104,6 +107,7 @@ static void __attribute__ ((__noreturn__))
4f348c
 	fputs(_(" -S, --unit <char>      define display unit\n"), out);
4f348c
 	fputs(_(" -w, --wide             wide output\n"), out);
4f348c
 	fputs(_(" -t, --timestamp        show timestamp\n"), out);
4f348c
+	fputs(_(" -y, --no-first         skips first line of output\n"), out);
4f348c
 	fputs(USAGE_SEPARATOR, out);
4f348c
 	fputs(USAGE_HELP, out);
4f348c
 	fputs(USAGE_VERSION, out);
4f348c
@@ -304,43 +308,47 @@ static void new_format(void)
4f348c
 		cpu_zzz, pgpgin, pgpgout, pswpin, pswpout, intr, ctxt, &running,
4f348c
 		&blocked, &dummy_1, &dummy_2);
4f348c
 
4f348c
-	if (t_option) {
4f348c
-		(void) time( &the_time );
4f348c
-		tm_ptr = localtime( &the_time );
4f348c
-		strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S", tm_ptr);
4f348c
-	}
4f348c
+	if (y_option == 0) {
4f348c
+		if (t_option) {
4f348c
+			(void) time( &the_time );
4f348c
+			tm_ptr = localtime( &the_time );
4f348c
+			 strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S", tm_ptr);
4f348c
+		}
4f348c
 
4f348c
-	duse = *cpu_use + *cpu_nic;
4f348c
-	dsys = *cpu_sys + *cpu_xxx + *cpu_yyy;
4f348c
-	didl = *cpu_idl;
4f348c
-	diow = *cpu_iow;
4f348c
-	dstl = *cpu_zzz;
4f348c
-	Div = duse + dsys + didl + diow + dstl;
4f348c
-	if (!Div) Div = 1, didl = 1;
4f348c
-	divo2 = Div / 2UL;
4f348c
-	printf(w_option ? wide_format : format,
4f348c
-	       running, blocked,
4f348c
-	       unitConvert(kb_swap_used), unitConvert(kb_main_free),
4f348c
-	       unitConvert(a_option?kb_inactive:kb_main_buffers),
4f348c
-	       unitConvert(a_option?kb_active:kb_main_cached),
4f348c
-	       (unsigned)( (unitConvert(*pswpin  * kb_per_page) * hz + divo2) / Div ),
4f348c
-	       (unsigned)( (unitConvert(*pswpout * kb_per_page) * hz + divo2) / Div ),
4f348c
-	       (unsigned)( (*pgpgin		   * hz + divo2) / Div ),
4f348c
-	       (unsigned)( (*pgpgout		   * hz + divo2) / Div ),
4f348c
-	       (unsigned)( (*intr		   * hz + divo2) / Div ),
4f348c
-	       (unsigned)( (*ctxt		   * hz + divo2) / Div ),
4f348c
-	       (unsigned)( (100*duse			+ divo2) / Div ),
4f348c
-	       (unsigned)( (100*dsys			+ divo2) / Div ),
4f348c
-	       (unsigned)( (100*didl			+ divo2) / Div ),
4f348c
-	       (unsigned)( (100*diow			+ divo2) / Div ),
4f348c
-	       (unsigned)( (100*dstl			+ divo2) / Div )
4f348c
-	);
4f348c
+		duse = *cpu_use + *cpu_nic;
4f348c
+		dsys = *cpu_sys + *cpu_xxx + *cpu_yyy;
4f348c
+		didl = *cpu_idl;
4f348c
+		diow = *cpu_iow;
4f348c
+		dstl = *cpu_zzz;
4f348c
+		Div = duse + dsys + didl + diow + dstl;
4f348c
+		if (!Div) Div = 1, didl = 1;
4f348c
+		divo2 = Div / 2UL;
4f348c
+		printf(w_option ? wide_format : format,
4f348c
+		       running, blocked,
4f348c
+		       unitConvert(kb_swap_used), unitConvert(kb_main_free),
4f348c
+		       unitConvert(a_option?kb_inactive:kb_main_buffers),
4f348c
+		       unitConvert(a_option?kb_active:kb_main_cached),
4f348c
+		       (unsigned)( (unitConvert(*pswpin  * kb_per_page) * hz + divo2) / Div ),
4f348c
+		       (unsigned)( (unitConvert(*pswpout * kb_per_page) * hz + divo2) / Div ),
4f348c
+		       (unsigned)( (*pgpgin		   * hz + divo2) / Div ),
4f348c
+		       (unsigned)( (*pgpgout		   * hz + divo2) / Div ),
4f348c
+		       (unsigned)( (*intr		   * hz + divo2) / Div ),
4f348c
+		       (unsigned)( (*ctxt		   * hz + divo2) / Div ),
4f348c
+		       (unsigned)( (100*duse			+ divo2) / Div ),
4f348c
+		       (unsigned)( (100*dsys			+ divo2) / Div ),
4f348c
+		       (unsigned)( (100*didl			+ divo2) / Div ),
4f348c
+		       (unsigned)( (100*diow			+ divo2) / Div ),
4f348c
+		       (unsigned)( (100*dstl			+ divo2) / Div )
4f348c
+		);
4f348c
 
4f348c
-	if (t_option) {
4f348c
-		printf(" %s", timebuf);
4f348c
-	}
4f348c
+		if (t_option) {
4f348c
+			printf(" %s", timebuf);
4f348c
+		}
4f348c
 
4f348c
-	printf("\n");
4f348c
+		printf("\n");
4f348c
+	}
4f348c
+	else
4f348c
+		num_updates++;
4f348c
 
4f348c
 	/* main loop */
4f348c
 	for (i = 1; infinite_updates || i < num_updates; i++) {
4f348c
@@ -865,6 +873,7 @@ int main(int argc, char *argv[])
4f348c
 		{"timestamp", no_argument, NULL, 't'},
4f348c
 		{"help", no_argument, NULL, 'h'},
4f348c
 		{"version", no_argument, NULL, 'V'},
4f348c
+		{"no-first", no_argument, NULL, 'y'},
4f348c
 		{NULL, 0, NULL, 0}
4f348c
 	};
4f348c
 
4f348c
@@ -877,7 +886,7 @@ int main(int argc, char *argv[])
4f348c
 	atexit(close_stdout);
4f348c
 
4f348c
 	while ((c =
4f348c
-		getopt_long(argc, argv, "afmnsdDp:S:wthV", longopts,
4f348c
+		getopt_long(argc, argv, "afmnsdDp:S:wthVy", longopts,
4f348c
 			    NULL)) != EOF)
4f348c
 		switch (c) {
4f348c
 		case 'V':
4f348c
@@ -946,6 +955,11 @@ int main(int argc, char *argv[])
4f348c
 		case 't':
4f348c
 			t_option = 1;
4f348c
 			break;
4f348c
+		case 'y':
4f348c
+			/* Don't display stats since system restart */
4f348c
+			y_option = 1;
4f348c
+			break;
4f348c
+
4f348c
 		default:
4f348c
 			/* no other aguments defined yet. */
4f348c
 			usage(stderr);