Skip to content

Instantly share code, notes, and snippets.

@mhluska
Created April 27, 2014 02:29
Show Gist options
  • Save mhluska/11336302 to your computer and use it in GitHub Desktop.
Save mhluska/11336302 to your computer and use it in GitHub Desktop.
How many times have you cat'd a directory?
function cat {
if [ "${#}" -gt 0 -a -d "${1}" ]; then
/bin/ls -l ${*}
else
/bin/cat ${*}
fi
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment