diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-04-21 23:08:56 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-04-21 23:08:56 +0200 |
commit | 7545db6075c2c840f1b16719cd37f0f8b282bc1a (patch) | |
tree | 77464bfbb129987b147b62abf6b331b495b7a805 /convert.sh | |
download | are_we_minecraft_yet-7545db6075c2c840f1b16719cd37f0f8b282bc1a.tar.xz |
Initial commit
Diffstat (limited to 'convert.sh')
-rwxr-xr-x | convert.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/convert.sh b/convert.sh new file mode 100755 index 0000000..228f682 --- /dev/null +++ b/convert.sh @@ -0,0 +1,3 @@ +#!/bin/bash +# converts minecraft.csv to minecraft.txt +cut -d',' -f2 < minecraft.csv | tail -n +2 | sort > minecraft.txt |