OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/sh | |
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 cd "$(dirname "$0")/../source/data/coll" | |
7 | |
8 echo "Removing unihan collation data from CJK" | |
9 | |
10 for i in zh ja ko | |
11 do | |
12 echo "Overwriting ${i}.txt" | |
13 sed '/^ unihan{$/,/^ }$/ d' -i ${i}.txt | |
14 done | |
OLD | NEW |