source: asp3_wo_tecs/trunk/utils/move-if-change@ 302

Last change on this file since 302 was 302, checked in by ertl-honda, 7 years ago

TECSレスのASP3の開発のため以下のtrunkからコピー
http://dev.toppers.jp/svn/asp3/branches/WO_TECS-3.C.0

File size: 145 bytes
Line 
1#! /bin/sh
2if test -r $2
3 then
4 if cmp -s $1 $2
5 then
6 echo $2 is unchanged
7 rm -f $1
8 else
9 mv -f $1 $2
10 fi
11else
12 mv -f $1 $2
13fi
Note: See TracBrowser for help on using the repository browser.