xref: /haiku/build/scripts/rm_attrs (revision 2db0fbd87ec3eeed8ab9b08ecfd1c41891c7e3a6)
1#!/bin/sh
2
3set -e
4
5if [ $# -lt 2 ]; then
6	echo "$0: Usage:..."
7	exit 1
8fi
9
10rmAttrs=$1
11shift
12
13if [ -f $rmAttrs ]; then
14	$rmAttrs "$@"
15else
16	rm "$@"
17fi
18