diff options
Diffstat (limited to 'convert.sh')
-rwxr-xr-x | convert.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |