#!/bin/zsh function mount() { if [[ $# -eq 0 ]]; then /bin/mount | column -t else /bin/mount "$@" fi }