github.com/cockroachdb/pebble@v0.0.0-20231214172447-ab4952c5f87b/sstable/testdata/Makefile (about)

     1  all: rebuild
     2  
     3  .PHONY: rebuild
     4  rebuild: make-table.go h.txt
     5  	go run ./make-table.go
     6  
     7  h.txt: hamlet-act-1.txt
     8  	cat hamlet-act-1.txt | \
     9  		tr '[:upper:]' '[:lower:]' | \
    10  		grep -o -E '\w+' | \
    11  		sort | \
    12  		uniq -c | \
    13  		awk '{printf "%7s %s\n", $$1, $$2}' \
    14  		> h.txt