Skip to content

Instantly share code, notes, and snippets.

@fradaloisio
Last active February 8, 2018 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fradaloisio/87312d53e479637ce654eb3a638dfaff to your computer and use it in GitHub Desktop.
Save fradaloisio/87312d53e479637ce654eb3a638dfaff to your computer and use it in GitHub Desktop.
[vagrant@localhost ~]$ FILE="/this/is/the/file.ext"
# dirname
[vagrant@localhost ~]$ echo "${FILE%/*}"
/this/is/the
#basename
echo "${FILE##*/}"
file.ext
# Full path whitout extension
[vagrant@localhost ~]$ echo "${FILE%.*}"
/this/is/the/file
# Extension
[vagrant@localhost ~]$ echo "${FILE#*.}"
ext
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment