Skip to content
Snippets Groups Projects
Commit 53fb5775 authored by Alice Brenon's avatar Alice Brenon
Browse files

Add the script used to compare pairs while building the Parallel subcorpus

parent 032ca309
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
PREFIX="."
if [ "$#" == 2 ]
then
PREFIX="${1%/}"
shift 1
fi
grep -i "${1}" "${PREFIX}/files.tsv" | cut -d$'\t' -f 1-3 | sed "s|^\(.*\)\t\(.*\)\t\(.*\)$|\"${PREFIX}/Text/\1/T\2/\3.txt\"|" | xargs -n 2 diff -y | less
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment