swc/atoms/scripts/sort.sh
강동윤 6fa85b646f
preset-env (#537)
swc_ecma_preset_env:
 - can inject polyfills automatically
 - can apply transforms automatically

swc:
 - added env config to .swcrc
2019-12-28 11:25:54 +09:00

5 lines
123 B
Bash
Executable File

#!/usr/bin/env bash
set -eu
cat words.txt | awk '{$1=$1};1' | uniq | sort > words_sorted.txt
mv words_sorted.txt words.txt