35 lines
1.1 KiB
Bash
Executable File
35 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2018-2019 Status Research & Development GmbH. Licensed under
|
|
# either of:
|
|
# - Apache License, version 2.0
|
|
# - MIT license
|
|
# at your option. This file may not be copied, modified, or distributed except
|
|
# according to those terms.
|
|
|
|
if [[ $OS = "Windows_NT" ]]; then
|
|
# Copy file.
|
|
cp -a ${1} ${2};
|
|
if [ -f "$1" ]; then
|
|
DST_FILE=$2
|
|
if [ -d "$2" ]; then
|
|
SRC_NAME="$(basename -- $1)"
|
|
DST_FILE=$(realpath ${2})/$SRC_NAME
|
|
fi
|
|
# Single file was copied, so we setting file permissions only.
|
|
icacls ${DST_FILE} /inheritance:r /grant:r $USERDOMAIN\\$USERNAME:\(F\);
|
|
else
|
|
if [ -d "$1" ]; then
|
|
SRC_NAME="$(basename -- $1)"
|
|
DST_DIR=$(realpath ${2})/$SRC_NAME
|
|
DST_FILES=$(realpath ${DST_DIR})/\*
|
|
# Directory was copied, so we update destination directory permissions.
|
|
icacls ${DST_DIR} /inheritance:r /grant:r $USERDOMAIN\\$USERNAME:\(OI\)\(CI\)\(F\);
|
|
# And update permissions for all files inside of destination directory.
|
|
icacls ${DST_FILES} /inheritance:r /grant:r $USERDOMAIN\\$USERNAME:\(F\);
|
|
fi
|
|
fi
|
|
else
|
|
cp -a ${1} ${2};
|
|
fi
|