mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
d5d186f732
8.x, see the following URL: http://blogs.adobe.com/acroread/2009/03/#entry-9871
9 lines
112 B
Bash
9 lines
112 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
# remove harmless files only
|
|
#
|
|
case $2 in
|
|
*/AcroWriteTest|*/*.tmp) /bin/rm "$@" ;;
|
|
esac
|