row - select rows from a starbase data table
SYNOPSYS
row 'selection expression' < tablefile select 'selection expression' < tablefile
row reads a starbase data table from its standard input and prints the rows for which the selection expression evaluates to true on the standard output. The expression should be a valid awk language expression and may contain references to column names and header keyword values.
The statements or expression is preprocessed by the program before passed to awk for evaluation. Column and header value names are substituted for thier values in the table. Column names may be subscripted with an array index and the column data will be split on the ARRDEL environment variable. Header values may be also subscripted, but assignments made to header values will not appear in the output table.
The user statements and expressions of are interpreted by the awk programming langauge.
Select all the rows that are for which the magnitude is fainter than 19:
row 'Magnitude > 19' < catalog.tab ObjectNumber Magnitude ------------ --------- 1 19.1 2 21.1 3 20.1
Undefined user written function may be automatically included in the text of programs. The environment variable TABLEFUNCTIONS names a path which is searched for undefined functions. If a function is mentioned in a user program or expression but not defined, a file found in the TABLEFUNCTIONS path with the name of the undefined function will be included in the program. This feature allows a library of usefull functions to be built and accessed easily.