9 lines
112 B
Text
9 lines
112 B
Text
|
#!/bin/sh
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
# remove harmless files only
|
||
|
#
|
||
|
case $2 in
|
||
|
*/AcroWriteTest|*/*.tmp) /bin/rm "$@" ;;
|
||
|
esac
|