Сообщение от
fandor9
это команды для линукса
скачал отсюда: http://gnuwin32.sourceforge.net/packages/coreutils.htm пакет утилит под винду. там есть seq
в Far ввожу:
seq -w 89002990000 89003099999 >4.txt
получаю такое:
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
8,9003e+010
и так далее - файл полтора мегабайта.
но если ввести так:
seq -w 8900 8905 >3.txt то вроде норм на выходе:
8900
8901
8902
8903
8904
8905
что делать и кто виноват ?
И ещё. а на каком сайте можно узнать Свежайшие диаппазоны мобильных номеров своего города ?
p.s. мой seq по комманде seq --help такое выдаёт:
seq.EXE --help
Usage: C:\66\seq.EXE [OPTION]... LAST
or: C:\66\seq.EXE [OPTION]... FIRST LAST
or: C:\66\seq.EXE [OPTION]... FIRST INCREMENT LAST
Print numbers from FIRST to LAST, in steps of INCREMENT.
-f, --format=FORMAT use printf style floating-point FORMAT (default: %g)
-s, --separator=STRING use STRING to separate numbers (default: \n)
-w, --equal-width equalize width by padding with leading zeroes
--help display this help and exit
--version output version information and exit
If FIRST or INCREMENT is omitted, it defaults to 1. That is, an
omitted INCREMENT defaults to 1 even when LAST is smaller than FIRST.
FIRST, INCREMENT, and LAST are interpreted as floating point values.
INCREMENT is usually positive if FIRST is smaller than LAST, and
INCREMENT is usually negative if FIRST is greater than LAST.
When given, the FORMAT argument must contain exactly one of
the printf-style, floating point output formats %e, %f, %g
Report bugs to .