mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
13 lines
No EOL
241 B
Bash
13 lines
No EOL
241 B
Bash
#!/usr/bin/env bash
|
|
|
|
# this script just collects symbols into one file for convenience
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
echo "Select a file"
|
|
exit 1
|
|
fi
|
|
|
|
mv $1 "$1.bak"
|
|
awk '$2 = toupper($2)' "$1.bak" | awk 1 - | sort -k2 -t' ' > $1
|
|
rm "$1.bak" |