Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
#!/bin/bash
# Quick tourism setup.
# Author and version: Eduardo Ochs, 2005oct15
# Public Domain.
# Typical usage:
#
#   mkdir ~/edrx; cd ~/edrx; wget http://angg.twu.net/edrx1; . edrx1; ./run-zsh
#
# Using the dir "~/edrx/" is just a convention, this can be run anywhere.
#
#   /tmp$ cd
#   /home/bewlay$ mkdir edrx
#   /home/bewlay$ cd edrx
#   /home/bewlay/edrx$ wget http://angg.twu.net/edrx1
#   /home/bewlay/edrx$ . edrx1
#      (lots of output - edrx1 downlads one or two files and unpacks them)
#   /home/bewlay/edrx$ ./run-zsh
#   /home/bewlay/edrx(bewlay:ma)# echo $HOME
#   /home/bewlay/edrx
#   /home/bewlay/edrx(bewlay:ma)#

# Download edrx.tgz and unpack it. Edrx.tgz is a big file (2.5MB)
# which changes only every few days; if it's already there then don't
# download it again.
if [ ! -e edrx.tgz ]; then
  wget http://angg.twu.net/edrx.tgz
  tar -xvzf edrx.tgz
else
  echo "Found a file edrx.tgz."
  echo "Skipping: wget http://angg.twu.net/edrx.tgz"
  echo "Skipping: tar -xvzf edrx.tgz"
fi

# Download and unpack edrx1.tgz.
# Edrx1.tgz is a small file with some last-minute updates.
# Sometimes it exists, sometimes it doesn't.
# Why the rm: (find-node "(wget)Download Options" "FILE.1")
rm edrx1.tgz
wget http://angg.twu.net/edrx1.tgz
tar -xvzf edrx1.tgz

# apt-get install zsh expect xterm fvwm unclutter gv tkdiff xzoom netcat
# apt-get install emacs21 emacs21-el elisp-manual emacs-lisp-intro w3m-el
# apt-get install liblua50     liblualib50     lua50
# apt-get install liblua50-dev liblualib50-dev lua50-doc
# apt-get install build-essential cvs
# apt-get install firefox
# apt-get install dict dictd dict-gcide dict-wn dict-jargon
# apt-get install glibc-doc bash-doc zsh-doc
# apt-get install tetex-base tetex-bin tetex-doc tetex-extra tetex-src


# (find-fline "~/edrx.tgz")
# (find-fline "~/.zshrc.local")
# (find-es "")