new utilities.
the .C files compile but are renamed to avoid building automatically.
This commit is contained in:
parent
f08fdedcee
commit
bc7cb1a15a
45 changed files with 16585 additions and 0 deletions
13
src/cmd/sleep.c
Normal file
13
src/cmd/sleep.c
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue