mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 15:28:58 +01:00
18 lines
150 B
Bash
Executable File
18 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ $# -lt 2 ]; then
|
|
echo "$0: Usage:..."
|
|
exit 1
|
|
fi
|
|
|
|
rmAttrs=$1
|
|
shift
|
|
|
|
if [ -f $rmAttrs ]; then
|
|
$rmAttrs "$@"
|
|
else
|
|
rm "$@"
|
|
fi
|