Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Source/Data/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,17 @@ _deploy: _install
@test "$(RHOST)" && ssh $(RHOST) "pkill -HUP -f McBopomofo || echo McBopomofo is not running" || true

sort:
@sort -k1 phrase.occ | uniq | grep -v '^$$' > tmp
@env LC_ALL=C sort -k1 phrase.occ | uniq | grep -v '^$$' > tmp
@mv tmp phrase.occ
@sort -k1 BPMFMappings.txt | uniq | grep -v '^$$' > tmp
@env LC_ALL=C sort -k1 BPMFMappings.txt | uniq | grep -v '^$$' > tmp
@mv tmp BPMFMappings.txt
@env LANG=C sort -k1 heterophony1.list|uniq>tmp
@env LC_ALL=C sort -k1 heterophony1.list|uniq>tmp
@mv tmp heterophony1.list
@env LANG=C sort -k1 heterophony2.list|uniq>tmp
@env LC_ALL=C sort -k1 heterophony2.list|uniq>tmp
@mv tmp heterophony2.list
@env LANG=C sort -k1 heterophony3.list|uniq>tmp
@env LC_ALL=C sort -k1 heterophony3.list|uniq>tmp
@mv tmp heterophony3.list
@env LANG=C sort -k1 exclusion.txt|uniq>tmp
@env LC_ALL=C sort -k1 exclusion.txt|uniq>tmp
@mv tmp exclusion.txt

check: SHELL:=/bin/bash
Expand Down