mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-05-10 21:01:20 +00:00
6 lines
196 B
Bash
Executable file
6 lines
196 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
dotfiles_home="${1:-$(dirname "$(realpath "$0")")}"
|
|
cp -rsf "$dotfiles_home"/. $HOME
|
|
|
|
echo "Dotfiles have been recursively copied and symlinked from $dotfiles_home to $HOME."
|