|
|
|
|
|
by mr_o47
1021 days ago
|
|
My favorite would be modernCSV since I look at CSVs all day Also I found this cool brew bash function i thought i share this here brewpackages (){
brew list --formula | xargs -n1 -P8 -I {} \
sh -c "brew info {} | egrep '[0-9]* files, ' | sed 's/^.[0-9] files, \(.\)).$/{} \1/'" | \
sort -h -r -k2 - | column -t
} This allows you to view how much space each package is taking |
|