Suppose I want to see the first 10 rows where something is true. The following command won't do that for me:
list if /* something */ in 1/10
Instead that command lists rows where something is true, if they also happen to be in the first 10 rows of the data. Often there are no rows that meet those conditions.
What should I do to see the first 10 rows where something is true?
list if /* something */ in 1/10
Instead that command lists rows where something is true, if they also happen to be in the first 10 rows of the data. Often there are no rows that meet those conditions.
What should I do to see the first 10 rows where something is true?
Comment