mirror of
https://review.haiku-os.org/haiku
synced 2025-01-19 13:01:29 +01:00
16 lines
139 B
Plaintext
16 lines
139 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -lt 2 ]; then
|
||
|
echo "$0: Usage:..."
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
rmAttrs=$1
|
||
|
shift
|
||
|
|
||
|
if [ -f $rmAttrs ]; then
|
||
|
$rmAttrs $@
|
||
|
else
|
||
|
rm $@
|
||
|
fi
|