#!/bin/sh
# Written by MegaFork - Patrick Nguyen. `Automatic' decrypter.
while $1
do
  FILENAME=`basename $1`
  case $FILENAME in
    \#*) # Encrypted files start wiv a `#' 1st key is FILENAME,second is FSP_PORT.
       echo Downloading/Decrypting $FILENAME ...
       fcatcmdovl $1|2pad $FILENAME
    *) fcatcmdovl $1 ;;
  esac
  shift
done
