Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MoveIfChange « mpw « config - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dbc12582f5fac99038b406557ca7a761d007109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Rename a file only if it is different from a previously existing
# file of the same name.  This is useful for keeping make from doing
# too much work if the contents of a file haven't changed.

# This is an MPW translation of the standard GNU sh script move-if-change.

Set exit 0

If "`exists -f "{2}"`"
  Compare "{1}" "{2}" >dev:null
  If {status} != 0
    Rename -y "{1}" "{2}"
  Else
    Echo "{2}" is unchanged
    Delete -i -y "{1}"
  End
Else
  Rename -y "{1}" "{2}"
End