44d4804d19
Merge commit 2f57ecae4b98e76e5d675563785a7e6c59c868c4 This is a new major release with a number of changes and extensions: - Limited the number of temporary numbers and made the space for them static so that allocating more space for them cannot fail. - Allowed integers with non-zero scale to be used with power, places, and shift operators. - Added greatest common divisor and least common multiple to lib2.bc. - Made bc and dc UTF-8 capable. - Added the ability for users to have bc and dc quit on SIGINT. - Added the ability for users to disable prompt and TTY mode by environment variables. - Added the ability for users to redefine keywords. - Added dc's modular exponentiation and divmod to bc. - Added the ability to assign strings to variables and array elements and pass them to functions in bc. - Added dc's asciify command and stream printing to bc. - Added bitwise and, or, xor, left shift, right shift, reverse, left rotate, right rotate, and mod functions to lib2.bc. - Added the functions s2u(x) and s2un(x,n), to lib2.bc. MFC after: 1 week
68 lines
1.0 KiB
Bash
Executable File
68 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Written by Rich Felker, originally as part of musl libc.
|
|
# Multi-licensed under MIT, 0BSD, and CC0.
|
|
#
|
|
# This is an actually-safe install command which installs the new
|
|
# file atomically in the new location, rather than overwriting
|
|
# existing files.
|
|
#
|
|
|
|
usage() {
|
|
printf "usage: %s [-D] [-l] [-m mode] src dest\n" "$0" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
mkdirp=
|
|
symlink=
|
|
mode=755
|
|
|
|
while getopts Dlm: name ; do
|
|
case "$name" in
|
|
D) mkdirp=yes ;;
|
|
l) symlink=yes ;;
|
|
m) mode=$OPTARG ;;
|
|
?) usage ;;
|
|
esac
|
|
done
|
|
shift $(($OPTIND - 1))
|
|
|
|
test "$#" -eq 2 || usage
|
|
src=$1
|
|
dst=$2
|
|
tmp="$dst.tmp.$$"
|
|
|
|
case "$dst" in
|
|
*/) printf "%s: %s ends in /\n", "$0" "$dst" 1>&2 ; exit 1 ;;
|
|
esac
|
|
|
|
set -C
|
|
set -e
|
|
|
|
if test "$mkdirp" ; then
|
|
umask 022
|
|
case "$2" in
|
|
*/*) mkdir -p "${dst%/*}" ;;
|
|
esac
|
|
fi
|
|
|
|
trap 'rm -f "$tmp"' EXIT INT QUIT TERM HUP
|
|
|
|
umask 077
|
|
|
|
if test "$symlink" ; then
|
|
ln -s "$1" "$tmp"
|
|
else
|
|
cat < "$1" > "$tmp"
|
|
chmod "$mode" "$tmp"
|
|
fi
|
|
|
|
mv -f "$tmp" "$2"
|
|
test -d "$2" && {
|
|
rm -f "$2/$tmp"
|
|
printf "%s: %s is a directory\n" "$0" "$dst" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
exit 0
|