mirror of
https://github.com/opnsense/src.git
synced 2026-04-02 16:05:17 -04:00
BMakefiles and other bits will follow. Requested by: Andrey Chernov Made world by: Chuck Robey
15 lines
129 B
Bash
Executable file
15 lines
129 B
Bash
Executable file
#!/bin/sh
|
|
if
|
|
test -r $2
|
|
then
|
|
if
|
|
cmp $1 $2 > /dev/null
|
|
then
|
|
echo $2 is unchanged
|
|
rm -f $1
|
|
else
|
|
mv -f $1 $2
|
|
fi
|
|
else
|
|
mv -f $1 $2
|
|
fi
|