new utilities.

the .C files compile but are renamed to avoid building automatically.
This commit is contained in:
rsc 2003-11-23 18:04:47 +00:00
parent f08fdedcee
commit bc7cb1a15a
45 changed files with 16585 additions and 0 deletions

13
src/cmd/sleep.c Normal file
View file

@ -0,0 +1,13 @@
#include <u.h>
#include <libc.h>
void
main(int argc, char *argv[])
{
long secs;
if(argc>1)
for(secs = atol(argv[1]); secs > 0; secs--)
sleep(1000);
exits(0);
}