This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
blog:spring2016:nburns:journal [2016/04/12 03:44] – nburns | blog:spring2016:nburns:journal [2016/05/10 04:03] (current) – nburns | ||
---|---|---|---|
Line 53: | Line 53: | ||
-Using loops in scripts | -Using loops in scripts | ||
- Finding and using other commands such as cut, head, tail, sort, sed, etc. | - Finding and using other commands such as cut, head, tail, sort, sed, etc. | ||
+ | |||
+ | April 18, 2016 | ||
+ | |||
+ | Been working on the grade calculator this week. I definitely feel like I have greatly progressed as far as script writing and basic usage of regular expressions are concerned. Still have a long way to go before I begin to feel fluent with regular expressions. I have come to find that my greatest obstacle all semester has not been implementing the knowledge that I have learned. But rather finding the information outside of class. Oddly enough the hardest information for me to find is usually more trivial in the grand scheme of things. Something simple like not leaving a space after the " | ||
+ | |||
+ | April 29, 2016 (Was attempted to submit on April 26) | ||
+ | |||
+ | gfo0 Questions/ | ||
+ | |||
+ | - Capture JUST the PROJECTS category as produced by the status tool? | ||
+ | |||
+ | | ||
+ | |||
+ | - Determine the total number of projects evaluated? | ||
+ | |||
+ | status unix | grep -v ' | ||
+ | |||
+ | - Figure out which project(s) was/were worth the most points? | ||
+ | |||
+ | |||
+ | |||
+ | - Figure out which project(s) was/were worth the least amount of points? | ||
+ | |||
+ | |||
+ | |||
+ | - Figure out the total number of project points available? | ||
+ | |||
+ | TotPosPoints=`status unix | grep 'final tally' | cut -d' | ||
+ | cut -d'/' | ||
+ | |||
+ | TotPosPoints=" | ||
+ | |||
+ | TotPosPoints=`echo " | ||
+ | |||
+ | echo $TotPosPoints | ||
+ | |||
+ | - Determine the total number of points you received on projects? | ||
+ | |||
+ | TotActPoints=`cat status | grep 'final tally' | cut -d'/' | ||
+ | cut -d' | ||
+ | |||
+ | TotActPoints=" | ||
+ | |||
+ | TotActPoints=`echo " | ||
+ | |||
+ | echo $TotActPoints | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | May 10, 2016 | ||
+ | |||
+ | |||
+ | |||
+ | Final week. Learned alot about looping this week and last week with the eoce projects. I accidentally misread the instructions to the full moon finding script and because of this I added a whole extra " | ||
+ | |||