mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-12 12:48:59 +00:00
15 lines
344 B
Bash
Executable File
15 lines
344 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
# The mvifdiff.sh script works like the mv(1) command, except
|
|
# that it does not touch the destination file if its contents
|
|
# are the same as the source file.
|
|
|
|
if cmp -s "$1" "$2" ; then
|
|
rm "$1"
|
|
else
|
|
mv "$1" "$2"
|
|
fi
|