Introduction
Announcements

Schedule
Labs
Assignments
TA office hours

Tests, exam

Topic videos
Some course notes
Extra problems
Lecture recordings

Discussion board

Grades so far

for i in /usr/wilma/letters/*
do
    grep Fred "$i"
done
The quotation marks around "$i" are required or it will not work with file names which have certain special characters in them (most notably spaces).


[back to sh problems]