How can I use GNU coreutils & other
command line tools to determine which
team lost the most games in 2016?
Paul Prawdzik
Start up your vagrant box
Enter the following command: awk -F, '{print ($10 >
$11)? $7 : $4 }' | sort | uniq -c | sort -n.

How can I use GNU coreutils & other command line tools to determine which team lost the most games in 2016?

  • 1.
    How can Iuse GNU coreutils & other command line tools to determine which team lost the most games in 2016? Paul Prawdzik
  • 2.
    Start up yourvagrant box
  • 3.
    Enter the followingcommand: awk -F, '{print ($10 > $11)? $7 : $4 }' | sort | uniq -c | sort -n.