11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_path=$(realpath "$0")
|
|
directory=$(dirname "$script_path")
|
|
|
|
for file in "$directory"/*.sh; do
|
|
if [ "$(basename "$file")" != update.sh ]; then
|
|
chmod +x "$file"
|
|
source "$file"
|
|
fi
|
|
done |