Artifact f07c5061fe35e8d1ae97fb1f42b19b5c7bc468697cfdd262d2ef83e2314c7d8e:
- Executable file mttroot/mtt/bin/trans/mtt_uncompress.sh — part of check-in [7bf6b22e52] at 2004-07-29 17:38:19 on branch origin/master — Uncompress _abg.dia if necessary before calling dia2abg.pl (user: geraint@users.sourceforge.net, size: 207) [annotate] [blame] [check-ins using] [more...]
#! /bin/sh file=$1 gzip --test --quiet $file 2> /dev/null ; file_is_uncompressed=$? if [[ $file_is_uncompressed -eq 0 ]]; then gz=`mktemp $file.gz.tmpXXXXXX` mv $file $gz zcat $gz > $file fi