Project

General

Profile

1
#!/bin/sh
2
# Translates a spreadsheet column using a dictionary.
3
# The column header is also translated. CSVs without a header are supported.
4
# Unrecognized names are left untouched, permitting successive runs on different
5
# dictionaries.
6
# Case- and punctuation-insensitive.
7

    
8
selfDir="$(dirname -- "$0")"
9

    
10
"$selfDir/canon" "$@"|"$selfDir/translate" "$@"
(73-73/79)