Skip to main content

addheading

Laurence MorganLess than 1 minute

addheading

Adds headings to a table

Description

addheading takes a list of parameters and adds them to the start of a table. Where prepend is designed to work with arrays, addheading is designed to prepend to tables.

Usage

<stdin> -> addheading value value value ... -> <stdout>

Examples

» tout jsonl '["Bob", 23, true]' -> addheading name age active                                                                                   
["name","age","active"]
["Bob","23","true"]

See Also

  • [ Index ]: Outputs an element from an array, map or table
  • [[ Element ]]: Outputs an element from a nested structure
  • a (mkarray): A sophisticated yet simple way to build an array or list
  • append: Add data to the end of an array
  • cast: Alters the data type of the previous function without altering it's output
  • count: Count items in a map, list or array
  • ja (mkarray): A sophisticated yet simply way to build a JSON array
  • match: Match an exact value in an array
  • msort: Sorts an array - data type agnostic
  • mtac: Reverse the order of an array
  • prepend: Add data to the start of an array
  • regexp: Regexp tools for arrays / lists of strings

This document was generated from builtins/core/arraytools/addheading_doc.yamlopen in new window.

Last update:
Contributors: Laurence Morgan