1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-04 18:20:18 +00:00

add snapshot.sh

This commit is contained in:
Luna 2024-04-19 16:17:06 +02:00
parent e2707805a2
commit 48b3642488

9
snapshot.sh Executable file
View file

@ -0,0 +1,9 @@
#!/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