In Powershell, you can parse a csv file for example, and use the command group-objects to get basic stats such as the number of records for particular items etc..
I was wondering if there's a quick trick in bash to do roughly the same and group objects by a certain field ? (I am thinking it could be possible using awk, but I've not find anything helpful).
I am not looking for any perl/python answer, I really need bash :)
Thank you!