Skip to content

Instantly share code, notes, and snippets.

@tueda
Created December 1, 2013 13:51
Show Gist options
  • Save tueda/7733913 to your computer and use it in GitHub Desktop.
Save tueda/7733913 to your computer and use it in GitHub Desktop.
Checks if $1 is a text file.
# Checks if $1 is a text file.
is_text() {
file "$1" | grep text >/dev/null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment