mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
5 lines
123 B
Bash
Executable File
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 |