1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-04 18:20:18 +00:00
dotfiles/snapshot.sh
2024-04-19 16:17:06 +02:00

9 lines
259 B
Bash
Executable file

#!/bin/zsh
find "$(dirname "$(basename $0)")"/config -type f | while read -r file; do
cp ${file/.\/config/$HOME\/.config} $file
done
find "$(dirname "$(basename $0)")"/bin -type f | while read -r file; do
cp ${file/.\/bin/$HOME\/.local\/bin} $file
done