Skip to content

Instantly share code, notes, and snippets.

@rafaelrinaldi
Created April 15, 2011 16:03
Show Gist options
  • Save rafaelrinaldi/921946 to your computer and use it in GitHub Desktop.
Save rafaelrinaldi/921946 to your computer and use it in GitHub Desktop.
Return the file extension.
# Return the file extension.
get_file_extension() {
echo $1 | awk -F . '{print $NF}'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment