1
0
Fork 0

rm broken script

This commit is contained in:
Luca Bilke 2024-01-26 18:19:06 +01:00
parent 72bd9ffb3d
commit 481a724937
1 changed files with 0 additions and 9 deletions

View File

@ -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