-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit e3dea0d
Showing
24 changed files
with
3,722 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
set -e # exit with nonzero exit code if anything fails | ||
|
||
array=(`find . -name 'Makefile'`) | ||
for mkfile in "${array[@]}" | ||
do : | ||
make -C `dirname $mkfile` | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# A lecture pdf filename starts with two digits (e.g. 00*.pdf) | ||
# Get the path to each lecture pdf | ||
FILES=`find . -maxdepth 3 -name tutorial_[[:digit:]][[:digit:]]_*.pdf -not -name *comms*.pdf` | ||
# zip them into a file | ||
zip -j tutorial_pdfs.zip $FILES | ||
FILES=`find . -maxdepth 3 -name tutorial_[[:digit:]][[:digit:]]_*.slides.pdf -not -name *comms*.pdf` | ||
# zip them into a file | ||
zip -j tutorial_slides.zip $FILES | ||
FILES=`find . -maxdepth 3 -name tutorial_[[:digit:]][[:digit:]]_*.notes.pdf -not -name *comms*.pdf` | ||
# zip them into a file | ||
zip -j tutorial_notes.zip $FILES |
Oops, something went wrong.