all repos

dotfiles @ 4894cfc93b1be23a56e55dfaf2081260f93f5088

i use rach linux btw
1 files changed, 13 insertions(+), 0 deletions(-)
bin: add upd script
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2025-01-02 23:27:54 +0200
Parent: aeaaf27
A bin/upd
ยทยทยท
                
                1
                +#!/usr/bin/env bash

              
                
                2
                +

              
                
                3
                +upd_fname=upd.sh

              
                
                4
                +upd_scripts=(

              
                
                5
                +  "$HOME/org"

              
                
                6
                +  "$HOME/Documents/Obsidian"

              
                
                7
                +)

              
                
                8
                +

              
                
                9
                +for path in "${upd_scripts[@]}"; do

              
                
                10
                +  echo -e "\e[32m====== $path\e[0m"

              
                
                11
                +  cd "$path" || exit 1

              
                
                12
                +  "$path"/"$upd_fname"

              
                
                13
                +done