Warning! This site is under development.
In this assignment, you will individually determine strategies for solving a variety of tasks in Unix.
Find good solutions to each of the following tasks. (That is, write a program or command to solve the task.) Put them in a folder with your name in unix-tasks folder in the primary class GitHub repository.
LastName,FirstName,Assignment,NumericGrade
find the the five highest grades on homework 2.<img ... src="*URL*" ...>. You
might also want to address any of the following added complexities.
img can have any capitalization (img, IMG, Img, iMg, etc.)You can make a local copy of the repository with
git clone git@github.com:grinnell-cs/csc282-2022sp.git
or
git clone https://github.com/grinnell-cs/csc282-2022sp.git
Your normal workflow should be something like the following.
git pull to bring in the latest updates to the files.git commit FILE -m "MESSAGE" to commit your changes. (Substitute
the file name and the message.)git pull again to make sure that you incorporate any chances
since you’ve started working.HEAD.)git add FILEgit commit.