Skip to content

Instantly share code, notes, and snippets.

View rcastellotti's full-sized avatar
🐻

Roberto Castellotti rcastellotti

🐻
View GitHub Profile
@rcastellotti
rcastellotti / OSTEP.sh
Last active April 24, 2023 22:25 — forked from theagoliveira/OSTEP.sh
Download every OSTEP (Operating Systems: Three Easy Pieces) chapter
#!/bin/bash
url="http://pages.cs.wisc.edu/~remzi/OSTEP/"
mkdir ostep
cd ostep
wget -O "00a Preface.pdf" "${url}preface.pdf"
wget -O "00b TOC.pdf" "${url}toc.pdf"
wget -O "01 Dialogue.pdf" "${url}dialogue-threeeasy.pdf"
wget -O "02 Introduction.pdf" "${url}intro.pdf"