
tsv-filter
List of commands for tsv-filter:
-
tsv-filter:tldr:00730 tsv-filter: Count matching lines, interpreting first line as a [H]eader.$ tsv-filter --count -H --eq ${field_name}:${number} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:0e76d tsv-filter: Print the lines where a specific column is [eq]ual/[n]on [e]qual/[l]ess [t]han/[l]ess than or [e]qual/[g]reater [t]han/[g]reater than or [e]qual to a given number.$ tsv-filter --${select} ${column_number}:${number} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:22317 tsv-filter: Filter for non-empty fields.$ tsv-filter --not-empty ${column_number} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:3a1c7 tsv-filter: Print the lines where a specific column is numerically equal to a given number.$ tsv-filter -H --eq ${field_name}:${number} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:40387 tsv-filter: Print the lines that satisfy two conditions.$ tsv-filter --eq ${column_number1}:${number} --str-eq ${column_number2}:${string} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:465b7 tsv-filter: Print the lines that match at least one condition.$ tsv-filter --or --eq ${column_number1}:${number} --str-eq ${column_number2}:${string} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:6d9eb tsv-filter: Print the lines where a specific column is empty.$ tsv-filter --invert --not-empty ${column_number} ${path-to-tsv_file}try on your machineexplain this command
-
tsv-filter:tldr:b144f tsv-filter: Print the lines where a specific column is [eq]ual/[n]ot [e]qual/part of/not part of a given string.$ tsv-filter --str-${select} ${column_number}:${string} ${path-to-tsv_file}try on your machineexplain this command