mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
5 lines
164 B
Bash
Executable File
5 lines
164 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
cat words.txt | sed '/^[[:space:]]*$/d' | awk '{$1=$1};1' | uniq | ./scripts/_/sort.py > words_sorted.txt
|
|
mv words_sorted.txt words.txt |