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
|
|
|
{
|
2008-11-12 21:37:19 +00:00
|
|
|
enum {
|
|
|
|
OPT_w = (1 << 0),
|
|
|
|
OPT_s = (1 << 1),
|
|
|
|
};
|
2007-04-10 15:43:37 +00:00
|
|
|
double last, increment, i;
|
2008-11-12 21:37:19 +00:00
|
|
|
const char *sep, *opt_s = "\n";
|
|
|
|
unsigned opt = getopt32(argv, "+ws:", &opt_s);
|
2008-11-12 12:59:56 +00:00
|
|
|
unsigned width = 0;
|
2006-09-17 16:28:10 +00:00
|
|
|
|
2008-11-12 12:59:56 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2007-04-10 15:43:37 +00:00
|
|
|
i = increment = 1;
|
2006-02-23 19:54:48 +00:00
|
|
|
switch (argc) {
|
|
|
|
case 3:
|
2008-11-12 12:59:56 +00:00
|
|
|
increment = atof(argv[1]);
|
2006-02-23 19:54:48 +00:00
|
|
|
case 2:
|
2008-11-12 12:59:56 +00:00
|
|
|
i = atof(*argv);
|
|
|
|
case 1:
|
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
|
|
|
}
|
2008-11-12 12:59:56 +00:00
|
|
|
if (opt & OPT_w) /* Pad to length of start or last */
|
|
|
|
width = MAX(strlen(*argv), strlen(argv[argc-1]));
|
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. */
|
2008-11-12 21:37:19 +00:00
|
|
|
sep = "";
|
2007-04-10 15:43:37 +00:00
|
|
|
while ((increment > 0 && i <= last) || (increment < 0 && i >= last)) {
|
2008-11-12 21:37:19 +00:00
|
|
|
printf("%s%0*g", sep, width, i);
|
|
|
|
sep = opt_s;
|
2007-04-10 15:43:37 +00:00
|
|
|
i += increment;
|
2004-01-27 09:22:20 +00:00
|
|
|
}
|
2008-11-12 13:22:24 +00:00
|
|
|
bb_putchar('\n');
|
2007-04-10 15:43:37 +00:00
|
|
|
return fflush(stdout);
|
2004-01-27 09:22:20 +00:00
|
|
|
}
|