mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
More options for the ASCII writer.
# The prefix for the header line if included. const header_prefix = "# " &redef; # The string to use for empty string fields. const empty_field = "" &redef; # The string to use for an unset optional field. const unset_field = "-" &redef;
This commit is contained in:
parent
cb9e0a5d5a
commit
b69ecff3ee
7 changed files with 95 additions and 8 deletions
|
@ -6,10 +6,20 @@ export {
|
|||
# for testing purposes.
|
||||
const output_to_stdout = F &redef;
|
||||
|
||||
# True to include a header line with column names.
|
||||
const include_header = T &redef;
|
||||
|
||||
# The prefix for the header line if included.
|
||||
const header_prefix = "# " &redef;
|
||||
|
||||
# The separator between fields.
|
||||
const separator = "\t" &redef;
|
||||
|
||||
# True to include a header line with column names.
|
||||
const include_header = T &redef;
|
||||
# The string to use for empty string fields.
|
||||
const empty_field = "" &redef;
|
||||
|
||||
# The string to use for an unset optional field.
|
||||
const unset_field = "-" &redef;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue