Skip to content

Instantly share code, notes, and snippets.

@0187773933
Last active January 10, 2026 13:33
Show Gist options
  • Select an option

  • Save 0187773933/8ffc0d37dbc0b89ee59c4be3ae62e987 to your computer and use it in GitHub Desktop.

Select an option

Save 0187773933/8ffc0d37dbc0b89ee59c4be3ae62e987 to your computer and use it in GitHub Desktop.
Timeline of Historic Inventions
#!/bin/bash
curl -s https://en.wikipedia.org/wiki/Timeline_of_historic_inventions \
| pandoc -f html -t plain \
| sed -n '/^Paleolithic/,/^See also$/p' \
| awk '
/^[[:space:]]*- / {
if (out) print out
out = $0
next
}
NF {
out = out " " $0
}
END {
if (out) print out
}
' \
| sed 's/\^(\[[^]]*\]\(\[[^]]*\]\)*)//g' \
| sed 's/[[:space:]][[:space:]]*/ /g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment