mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 00:40:44 +02:00
13 lines
231 B
Bash
Executable file
13 lines
231 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
upd_fname=upd.sh
|
|
upd_scripts=(
|
|
"$HOME/org"
|
|
"$HOME/Documents/Obsidian"
|
|
)
|
|
|
|
for path in "${upd_scripts[@]}"; do
|
|
echo -e "\e[32m====== $path\e[0m"
|
|
cd "$path" || exit 1
|
|
"$path"/"$upd_fname" || exit 1
|
|
done
|