Skip to content

Instantly share code, notes, and snippets.

@scribblemaniac
Created February 13, 2018 23:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scribblemaniac/9a7ee044ae717ffe9bade8b7b5983a04 to your computer and use it in GitHub Desktop.
Save scribblemaniac/9a7ee044ae717ffe9bade8b7b5983a04 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Usage (inside the data folder):
# fixvec.sh *.vec
for f in "$@"; do
cat "$f" | tr "," "." > temp.txt
mv -f temp.txt "$f"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment