#!/bin/bash file="$(mktemp)" if [ -n "$file" ]; then ( umask 077; cat > "$file"; echo "/bin/rm -f '$file'" >> "$file" ) exec