mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# makes files executable
|
|
|
|
function chmox() {
|
|
[ ! -f "$1" ] && echo "usage: chmox <file>" && return 1
|
|
chmod u+x "$1"
|
|
}
|