home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Netscape Plug-Ins Developer's Kit
/
Netscape_Plug-Ins_Developers_Kit.iso
/
source
/
Chap09
/
NPTREE
/
UNIXPROG.C
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-04-15
|
339 b
|
24 lines
#include <stdio.h>
#define INTERVAL 1
// http://www.swcp.com/zan-bin/vmstat.cgi
main ()
{
char buff[100];
printf ("Content-type: text/plain%c%c", 10,10);
fflush (stdout);
printf ("VMSTAT %d second intervals.\n", INTERVAL);
fflush (stdout);
sprintf (buff, "vmstat %d 2",INTERVAL);
system (buff);
}