2004-07-23 06:43:29 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2004-01-27 09:22:20 +00:00
|
|
|
/*
|
2004-07-23 06:43:29 +00:00
|
|
|
* seq implementation for busybox
|
|
|
|
*
|
2006-02-23 19:54:48 +00:00
|
|
|
* Copyright (C) 2004, Glenn McGrath
|
2004-01-27 09:22:20 +00:00
|
|
|
*
|
2006-02-23 19:54:48 +00:00
|
|
|
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2004-01-27 09:22:20 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2004-01-27 09:22:20 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
/* This is a NOFORK applet. Be very careful! */
|
|
|
|
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int seq_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-06 20:47:33 +00:00
|
|
|
int seq_main(int argc, char **argv)
|
2004-01-27 09:22:20 +00:00
|
|
|
{
|
2007-04-10 15:43:37 +00:00
|
|
|
double last, increment, i;
|
2006-09-17 16:28:10 +00:00
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
i = increment = 1;
|
2006-02-23 19:54:48 +00:00
|
|
|
switch (argc) {
|
|
|
|
case 4:
|
2006-09-27 23:31:08 +00:00
|
|
|
increment = atof(argv[2]);
|
2006-02-23 19:54:48 +00:00
|
|
|
case 3:
|
2007-04-10 15:43:37 +00:00
|
|
|
i = atof(argv[1]);
|
2006-02-23 19:54:48 +00:00
|
|
|
case 2:
|
2006-09-27 23:31:08 +00:00
|
|
|
last = atof(argv[argc-1]);
|
2006-02-23 19:54:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
bb_show_usage();
|
2004-01-27 09:22:20 +00:00
|
|
|
}
|
|
|
|
|
2004-07-23 06:43:29 +00:00
|
|
|
/* You should note that this is pos-5.0.91 semantics, -- FK. */
|
2007-04-10 15:43:37 +00:00
|
|
|
while ((increment > 0 && i <= last) || (increment < 0 && i >= last)) {
|
2006-04-27 22:36:32 +00:00
|
|
|
printf("%g\n", i);
|
2007-04-10 15:43:37 +00:00
|
|
|
i += increment;
|
2004-01-27 09:22:20 +00:00
|
|
|
}
|
|
|
|
|
2007-04-10 15:43:37 +00:00
|
|
|
return fflush(stdout);
|
2004-01-27 09:22:20 +00:00
|
|
|
}
|