var PicsLnk=/\.(jpg|jpeg|gif|png|bmp|tif|swf)/i;
var RBDTlnk=/(attach|download)|attachment|\.(ZIP|RAR|7Z|GZ|ARJ|LZH|TAR|EXE|BIN|RM|RAM|AVI|WMV|WMA|MP3|MPG|TORRENT)/i;
#!/bin/bash
# generate-script.sh
# Based on an idea by Albert Reiner.
OUTFILE=generated.sh # Name of the file to generate.
# -----------------------------------------------------------
# 'H
#!/bin/bash
# stupid-script-tricks.sh: Don't try this at home, folks.
# From "Stupid Script Tricks," Volume I.
dangerous_variable=`cat /boot/vmlinuz` # The compressed Linux kernel itself.
echo "s
#!/bin/bash
# script-array.sh: Loads this script into an array.
# Inspired by an e-mail from Chris Martin (thanks!).
script_contents=( $(cat "$0") ) # Stores contents of this script ($0)