You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
164 B

4 years ago
  1. Like `grep`:
  2. <!-- exec -->
  3. $ perl -ne 'print if m/^T/;' examples/authors.tsv | column -t
  4. Tolkien John Ronald Reuel
  5. Toews Miriam
  6. <!-- end -->