repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libroot/posix/stdio: Remove unused portions.
[haiku.git]
/
build
/
scripts
/
rm_attrs
blob
ea4d99f9a81d60c3d079a1d329f4c91e9f718da0
1
#!/bin/sh
2
3
if
[
$#
-lt
2
];
then
4
echo
"
$0
: Usage:..."
5
exit
1
;
6
fi
7
8
rmAttrs
=
$1
9
shift
10
11
if
[
-f
$rmAttrs
];
then
12
$rmAttrs
"$@"
13
else
14
rm
"$@"
15
fi