Access the volleylist file from the course project directory.
- Instructions
The volleylist file should be in a subdirectory called course-project under your home directory. You will write three commands to sort the volleylist file:
- Write a
sort
command to sort the volleylist file by the player’s last name.
- Write a
sort
command to sort the volleylist file by the player’s zip code.
- Create a variable containing the sort field number
$ col=2.
- Now write a
sort
command to sort the volleylist file by this column.