You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
266 B
6 lines
266 B
4 years ago
|
echo "Chicago Balls Roster"
|
||
|
echo "--------------------"
|
||
|
grep "CHI" $LLO_DATAFILE | grep "1995" |cut -d',' -f3-4,40
|
||
|
echo "Jordans Assists"
|
||
|
echo "----------------"
|
||
|
grep "CHI" $LLO_DATAFILE | grep "1995" |grep "Jordan" | cut -d"," -f3,48
|