#!/usr/bin/env bash # @file Ensure Local Bin Executable # @brief Ensures all the scripts located in `~/.local/bin` have executable permissions # @description # This script cycles through the scripts in `~/.local/bin` are executable. It only cycles through # the scripts that are exactly one level deep in the `~/.local/bin` folder. {{ includeTemplate "universal/profile" }} {{ includeTemplate "universal/logg" }} {{ $exeFiles := (output "find" (joinPath .chezmoi.homeDir ".local" "bin") "-mindepth" "1" "-maxdepth" "1" "-type" "f") -}} {{- range $exeFile := splitList "\n" $exeFiles -}} {{- if ne $exeFile "" -}} # {{ $exeFile }} {{ end -}} {{- end }} logg info 'Ensuring all files in ~/.local/bin are executable' find "$HOME/.local/bin" -mindepth 1 -maxdepth 1 -type f | while read EXE_FILE; do chmod +x "$EXE_FILE" done