Files
svr/install/tree_cpy.sh
T
2026-01-23 08:55:18 +01:00

11 lines
234 B
Bash
Executable File

#!/usr/bin/bash
USR_DIR=${1:-"no_dir"}
[[ $USR_DIR == "no_dir" ]] && \
echo "usage $0 usr_dir" && \
exit 1
USR_DIR=$(realpath $USR_DIR)
cp -l -p -r $USR_DIR/* /
# cannot hardlink (invaliv cross device)
ln -s $USR_DIR/home/.* /home