Created
November 7, 2014 04:25
-
-
Save djblue/d0981fa2b442ed2724c3 to your computer and use it in GitHub Desktop.
A collection of bash snippets.
This file contains 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
# Sum all of the columns in a table | |
cat file.txt | cut -d',' -f2 | paste -sd+ | bc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment