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