Skip to content

Instantly share code, notes, and snippets.

@flappyBug
Forked from cuschk/filename.zsh
Created December 12, 2019 02:01
Show Gist options
  • Save flappyBug/0458ae3f2817604ef5c157f749da7f34 to your computer and use it in GitHub Desktop.
Save flappyBug/0458ae3f2817604ef5c157f749da7f34 to your computer and use it in GitHub Desktop.
Zsh: file base name and extension
#!/usr/bin/env zsh
f='example.txt'
echo ${f:r}
#=> example
echo ${f:e}
#=> txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment