Open hectorcorrea opened 3 years ago
Add a flag to get a count of records since this is something frequently needed.
The current workaround for this is to pass the output through grep and wc:
grep
wc
marcli -file=big_marc_file.xml -fields=LDR | grep LDR | wc -l
Add a flag to get a count of records since this is something frequently needed.
The current workaround for this is to pass the output through
grep
andwc
: