home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 1: Collection A / 17Bit_Collection_A.iso / files / 68.dms / in.adf / untarmail < prev    next >
Encoding:
Text File  |  2008-06-07  |  174 b   |  8 lines

  1. if test $# -ge 1; then
  2.    atob < $1 | uncompress | tar xvpf -
  3.    mv $1 /usr/tmp/$1.$$
  4.    echo tarmail file moved to: /usr/tmp/$1.$$
  5. else
  6.    atob | uncompress | tar xvpf -
  7. fi
  8.