Created
April 5, 2017 20:21
-
-
Save werelax/db125914d73a710855871da96dc0f7b1 to your computer and use it in GitHub Desktop.
ghetto CSV tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Usage: ./csv-viewer.sh ';' input.csv | |
# | |
iconv -f utf8 -t ascii//TRANSLIT $2 | column -s$1 -t | less -S -N |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Usage: ./random-sample.sh 1000 input.csv > ouput.csv | |
# | |
head -n 1 $2 | |
tail -n +1 $2 | shuf -n $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment