2grams.sh (98B)
1 #!/bin/bash 2 3 # run on lexique 4 5 cut -f1 "$1" | sed 1d | grep -v " " | sort | uniq | ./digraphs.py 6