mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
13 lines
221 B
Bash
Executable file
13 lines
221 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"
|
|
done
|