dotfiles/.bashrc.d/02-walktoroot.sh
2025-01-24 10:01:12 +01:00

14 lines
236 B
Bash
Executable file

#! /bin/bash
function walktoroot {
local DIR="$1"
shift
if [ "$DIR" = "/" ]; then
return
fi
if ! "$@" "$DIR" ; then
local PARENTDIR="$(dirname "$DIR")"
walktoroot "$PARENTDIR" "$@"
fi
}