initial commit

This commit is contained in:
2022-07-27 22:45:40 -04:00
commit 30d2520a1b
3 changed files with 72 additions and 0 deletions

16
install.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/bash
root="root"
all_files() {
find $root -type f,l
}
for f in $(all_files)
do
install_path="${f#"$root"}"
mkdir -p "$(dirname "$install_path")"
ln -snf "$PWD/$f" "$install_path"
done
# vim: set filetype=bash: