Created
June 1, 2015 00:46
-
-
Save whyvez/f41a8b4664563252d9c8 to your computer and use it in GitHub Desktop.
superdooper fkey checker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| awk -F, 'NR==FNR{ k[$1 $2]=1; next; } NF{ if(!k[$1 $2]) print; }' ./examples/pgyi/data/plot.csv ./examples/pgyi/data/trees.csv |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Prints orphaned trees records based on the company-company_plot_number key combination.