nix/module/common/bash/module/Chmod.sh
2024-03-04 03:04:57 +03:00

6 lines
87 B
Bash

# Add executable flag to file.
# Usage: x <FILES>
function x() {
chmod +x -- "${@}"
}