From 9bddd83c8483e7b2476ce4166daf5ff40c4622fb Mon Sep 17 00:00:00 2001 From: Lizzy Fleckenstein Date: Fri, 21 Apr 2023 23:21:44 +0200 Subject: convert.sh: add uniq --- convert.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'convert.sh') diff --git a/convert.sh b/convert.sh index 228f682..0e3fa95 100755 --- a/convert.sh +++ b/convert.sh @@ -1,3 +1,3 @@ #!/bin/bash # converts minecraft.csv to minecraft.txt -cut -d',' -f2 < minecraft.csv | tail -n +2 | sort > minecraft.txt +cut -d',' -f2 < minecraft.csv | tail -n +2 | sort | uniq > minecraft.txt -- cgit v1.2.3