| # Restore | |
| Download every file under `archives/` into one local directory, then extract | |
| the independent tar shards in lexical order: | |
| ```bash | |
| mkdir -p /path/to/restore | |
| find archives -type f -name 'jmtseng-shard-*.tar' -print0 \ | |
| | sort -z \ | |
| | xargs -0 -I{} tar -xf "{}" -C /path/to/restore | |
| ``` | |
| The restored tree is `/path/to/restore/jmtseng`. Shards are independent tar | |
| archives and must not be concatenated. | |
| Nested `.git` directories and the files listed in `REDACTED_PATHS.txt` are | |
| intentionally absent from the public snapshot. | |