category: Devel requires: cygwin sdesc: "allows safe temp file/dir creation from shell scripts" ldesc: "Mktemp is a simple utility designed to make temporary file handling in shell scripts be safe and simple. Traditionally, people writing shell scripts have used contructs like `foo=/tmp/foop.$$' which is trivial to attack. Instead, use `foo=`mktemp /tmp/foo.XXXXXX`'"