diff --git a/.local/bin/findup b/.local/bin/findup deleted file mode 100755 index af2da49c2..000000000 --- a/.local/bin/findup +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -set -e -path="$1" -shift 1 -while [[ $path != / ]]; do - find "$path" -maxdepth 1 -mindepth 1 "$@" - # Note: if you want to ignore symlinks, use "$(realpath -s "$path"/..)" - path="$(readlink -f "$path"/..)" -done