Updated: 2018-01-06 02:14 EST
____ _ ____ __ __
| _ \ | | ___ __ _ ___ ___ | _ \ ___ \ \ / /___ _ _ _ __
| |_) || | / _ \ / _` |/ __| / _ \ | | | | / _ \ \ V // _ \ | | | || '__|
| __/ | || __/| (_| |\__ \| __/ | |_| || (_) | | || (_) || |_| || |
|_| |_| \___| \__,_||___/ \___| |____/ \___/ |_| \___/ \__,_||_|
____ ____ _____ _____ _ _ _
/ ___/ ___|_ _| | ____|_ ____ _| |_ _ __ _| |_(_) ___ _ __
| | \___ \ | | | _| \ \ / / _` | | | | |/ _` | __| |/ _ \| '_ \
| |___ ___) || | | |___ \ V / (_| | | |_| | (_| | |_| | (_) | | | |
\____|____/ |_| |_____| \_/ \__,_|_|\__,_|\__,_|\__|_|\___/|_| |_|
[...]
Reminder: There are now two quizzes that you need to complete on Blackboard as part of your term Quiz mark. A third quiz will be posted before the Final Exam. The Quizzes are not optional; see the Course Outline.
Check the due date for each assignment and put a reminder in your agenda, calendar, and digital assistant. Just like in the Real World, not all due dates are on the same days or at the same times.
This course has two midterm tests and one final exam.
The Final Exam is three hours long and contains approximately 180 multiple-choice questions similar to those found in the three preceding Practice Tests and Answers. Do all three practice tests before the Final Exam!
All three practice tests are posted under Practice Tests and Answers. The Final Exam is comprehensive of the whole course; you need to do all three practice tests for the Final Exam.
Take notes in class! Keep a pad open on your desk.
Don’t forget to finish your five Blackboard quiz attempts for each of Midterm 1, Midterm 2, and the Final Exam. Quizzes count toward your final grade.
All three practice tests are now available. We have not yet covered all the material needed to do all the questions on the third practice test.
Your VIM and NANO wall of shame: http://cst8207.idallen.ca/vim17w.cgi
Fan mail:
From: King, Alexander J
To: Ian Allen
Subject: Lecture cap inquiry
Date: Sat, 8 Apr 2017 05:22:52 -0400
Professor Allen,
My name is Alexander King and I'm a computer science engineering student
at The University of Toledo, Ohio. I came across a video of you rapping
the other day. I must say it was entertaining. After that I went on to
find your website <http://www.idallen.com/>. I'm writing to inquire if
any of your lectures have been recorded and if you're able and willing to
share them with me? Your <http://teaching.idallen.com> is amazing as it
is but I figured I would ask if actual lectures were out there somewhere.
All the best,
Alexander J King
case
Statements and Shell Glob Patterns.1. Match a digit "0" anywhere in the argument:
case "$1" in
*0* ) do something here ... ;;
esac
2. Match digits "0" or "1" anywhere in the argument:
case "$1" in
*[01]* ) do something here ... ;;
esac
3. Match digits "0" through "9" anywhere in the argument:
case "$1" in
*[0-9]* ) do something here ... ;;
esac
4. Match digits "0" through "9" anywhere in the argument using a POSIX
character class named '[:digit:]' that replaces range '0-9':
case "$1" in
*[[:digit:]]* ) do something here ... ;;
esac
5. Match any character that is *NOT* a digit:
case "$1" in
*[![:digit:]]* ) do something here ... ;;
esac
[:digit:] [:alpha:] [:alnum:] [:space:]
See POSIX Character Classes