DEBSOURCES
Skip Quicknav
sources / bfs / 4.1-1 / tests / remove-sibling.sh
12345678910
#!/usr/bin/env bash for file in "${1%/*}"/*; do if [ "$file" != "$1" ]; then rm "$file" exit $? fi done exit 1