#!/bin/zsh # makes files executable function chmox() { [ ! -f "$1" ] && echo "usage: chmox " && return 1 chmod u+x "$1" }