-
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathbooks.sh
More file actions
23 lines (19 loc) · 608 Bytes
/
books.sh
File metadata and controls
23 lines (19 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Google SRE Books.
# NOTE: The indentation before inner vars should be always "tab" not "space".
declare -A BOOKS
BOOKS=(
# Site Reliability Engineering
["SRE_BOOK"]='
BOOK_NAME=sre-book
BOOK_NAME_FULL=Site Reliability Engineering
BOOK_FILE=google-site-reliability-engineering
BOOK_TOC_URL=https://sre.google/sre-book/table-of-contents/index.html
'
# Site Reliability Workbook
["SRW_BOOK"]='
BOOK_NAME=workbook
BOOK_NAME_FULL=The Site Reliability Workbook
BOOK_FILE=google-the-site-reliability-workbook
BOOK_TOC_URL=https://sre.google/workbook/table-of-contents/index.html
'
)