Artifact 164628bbec9e97996320b203d7bb3ee2c4526e5d3335135f31331f2eb5ec7971:
- Executable file mtt/bin/trans/mtt_uncompress.sh — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 205) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/bin/trans/mtt_uncompress.sh — part of check-in [250ff46156] at 2005-02-17 18:36:38 on branch origin/master — Removed a bash-ism: replaced [[ conditional ]] with [ conditional ] (user: geraint@users.sourceforge.net, size: 205) [annotate] [blame] [check-ins using]
#! /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