Skip to content

Instantly share code, notes, and snippets.

@dewomser
Created April 5, 2026 06:19
Show Gist options
  • Select an option

  • Save dewomser/7ee7bac0a6ecf0ae584d457b8dfcd8c7 to your computer and use it in GitHub Desktop.

Select an option

Save dewomser/7ee7bac0a6ecf0ae584d457b8dfcd8c7 to your computer and use it in GitHub Desktop.
Bash Basename, Dirname und Parameter expansion
#Linux #Bash
basename und dirname
sind auch Teil der Parameter expansion
lolo="~/gogo/usr/bin/lolo.txt.gz"
dirname $lolo
#oder
echo "${lolo%/*}"
#=> ~/gogo/usr/bin
basename $lolo
#oder
echo "${lolo##*/}"
#=> lolo.txt.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment