Searched refs:delimiter (Results 1 – 4 of 4) sorted by relevance
/coreutils/src/ |
D | uniq.c | 321 check_file (char const *infile, char const *outfile, char delimiter) in check_file() argument 366 if (readlinebuffer_delim (thisline, stdin, delimiter) == 0) in check_file() 379 putchar (delimiter); in check_file() 394 putchar (delimiter); in check_file() 403 if (readlinebuffer_delim (prevline, stdin, delimiter) == 0) in check_file() 413 if (readlinebuffer_delim (thisline, stdin, delimiter) == 0) in check_file() 443 putchar (delimiter); in check_file() 486 char delimiter = '\n'; /* change with --zero-terminated, -z */ in main() local 626 delimiter = '\0'; in main() 662 check_file (file[0], file[1], delimiter); in main()
|
D | numfmt.c | 193 static int delimiter = DELIMITER_DEFAULT; variable 1324 if (delimiter != DELIMITER_DEFAULT) in next_field() 1326 if (*field_start != delimiter) in next_field() 1328 while (*field_end && *field_end != delimiter) in next_field() 1414 fputc ((delimiter == DELIMITER_DEFAULT) ? in process_line() 1415 ' ' : delimiter, stdout); in process_line() 1515 delimiter = optarg[0]; in main() 1588 auto_padding = (padding_width == 0 && delimiter == DELIMITER_DEFAULT); in main()
|
/coreutils/doc/ |
D | coreutils.texi | 780 @cindex option delimiter 1824 input file by a line containing exactly one of these delimiter strings: 1839 A section delimiter is replaced by an empty line on output. Any text 1840 that comes before the first section delimiter string in the input file 1871 @itemx --section-delimiter=@var{cd} 1873 @opindex --section-delimiter 1875 Set the section delimiter characters to @var{cd}; default is 5035 Use @samp{:} as the field delimiter. 5126 @c each record delimiter string to @samp{\0}, 5128 @c and converting each @samp{\0} back to the original record delimiter. [all …]
|
/coreutils/ |
D | NEWS | 210 'comm --output-delimiter="" --total' now delimits columns in the total 554 nl now handles single character --section-delimiter arguments, 1415 join, sort, uniq with --zero-terminated, now treat '\n' as a field delimiter. 2566 delimiter and an unbounded range like "-f1234567890-". 3514 comm accepts new option, --output-delimiter=STR, that allows specification 3515 of an output delimiter other than the default single TAB. 4812 cut's --output-delimiter=D option works with abutting byte ranges. 5531 to ranges of fields) and when --output-delimiter=STRING is specified, 5573 * printf now honors the '--' command line delimiter
|