d5d186f732
8.x, see the following URL: http://blogs.adobe.com/acroread/2009/03/#entry-9871
8 lines
112 B
Bash
8 lines
112 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
# remove harmless files only
|
|
#
|
|
case $2 in
|
|
*/AcroWriteTest|*/*.tmp) /bin/rm "$@" ;;
|
|
esac
|