Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: eps
> ./README.md
Lenses
(coming soon!)
## Copy the PDF index of Epstein-related court cases.
[justice.gov/epstein](https://www.justice.gov/epstein/court-records)
includes required publications from Epstein-related court cases.
These often include witness testimonies,
and the dense redactions are usually aimed to ensure
survivors, the abused, trafficked, and exploited,
are less exposed to further aggression.
Please email [public@operand.online](mailto:public@operand.online)
if you'd like to discuss, or ask for help, or lend help,
in examining this record collection.
To begin, you'll need to source a couple modules from [op://gram/nue].
[nushell]: https://nushell.sh
[tabfs]: https://omar.website/tabfs
[op://gram/nue]: https://operand.online/gram/nue
```nushell
# Load a small group of `nushell` commands.
mkdir ~/.nue
[ index page grammar ] | each { $"($in).nu" } each {
let source = [ https://share.operand.online/gram/nue $in ] | path join
let sink = [~ .nue $in ] | path join
http get -r $source | lines | str join "\n" | save -f $sink }
source ~/.nue/index.nu
```
You can begin from the ground up
once you're running [nushell], [tabfs], and `wget`.
You can bypass the dependency on `tabfs` by pulling our [pre-loaded index][index]
[index]: https://share.operand.online/fbi-epstein/judiciary.index.yml
```nushell
mkdir epstein.record; cd epstein.record
http get https://share.operand.online/epstein.record/judiciary.index.yml | save -f cases.index.yml
index load 'https://www.justice.gov/epstein/court-records'
-l cases
-c [ '^\/epstein\/court-records\/.+' pdf ]
```