Files
debian-cis/hooks/check_is_executable.sh
2025-08-01 16:51:41 +02:00

8 lines
72 B
Bash
Executable File

#!/bin/bash
for script in "$@"; do
chmod +x "$script"
done
exit 0