source: other-projects/is-sheet-music-encore/trunk/gen-corpus-ids/HATHI-EXTRACT-PD-NON-GOOGLE.sh@ 32962

Last change on this file since 32962 was 32962, checked in by davidb, 5 years ago

Scripts for processing the tab-delimited HathiTrust metadata files

  • Property svn:executable set to *
File size: 175 bytes
Line 
1#!/bin/bash
2
3input=${1:-'hathi_brief_20190301.txt'}
4
5cat "$input" \
6 | awk -F '\t' '$2 == "pd" && $3 == "MU" && $4 != "google" { print $0 }'
7
8# grep MU | grep -v google
Note: See TracBrowser for help on using the repository browser.