Mercurial > hg > xemacs-beta
view lib-src/tm-file @ 81:ebca3d831cea
Added tag r20-0b90 for changeset 1ce6082ce73f
| author | cvs |
|---|---|
| date | Mon, 13 Aug 2007 09:06:45 +0200 |
| parents | 1ce6082ce73f |
| children | 364816949b59 |
line wrap: on
line source
#!/bin/sh - # # $Id: tm-file,v 1.3 1997/01/11 20:13:51 steve Exp $ # PATH=${PATH:-/usr/bin:/bin}:`dirname $0 2>/dev/null`; export PATH if [ "$TM_TMP_DIR" = "" ]; then TM_TMP_DIR=/tmp export TM_TMP_DIR fi if [ "$5" = "" ]; then filename="$TM_TMP_DIR/mime$$" else filename="$TM_TMP_DIR/$5" fi echo "$2; $3 -> $filename" tmdecode $3 $1 $filename
