Add copy_dotfiles script and other things

This commit is contained in:
2025-01-11 22:30:21 -06:00
parent e44c29ccb9
commit 1340729f50
8 changed files with 99 additions and 2 deletions

2
run
View File

@ -30,7 +30,7 @@ done
script_dir=$(cd $(dirname "${ZSH_SOURCE[0]}") &> /dev/null && pwd)
log "run // script_dir: $script_dir -- args: $single_script_filter"
cd $script_dir
scripts=$(find ./runs -maxdepth 1 -mindepth 1 -type f)
scripts=(`find ./runs -maxdepth 1 -mindepth 1 -type f`)
for script in $scripts; do
if [[ -x $script ]]; then
if echo "$script" | grep -qv "$single_script_filter"; then