myhome/.config/nvim/plugged/bash-support.vim/bash-support/codesnippets/create-tempfile

4 lines
75 B
Plaintext
Raw Normal View History

TMPFILE=$( mktemp /tmp/example.XXXXXXXXXX ) || exit 1
rm --force $TMPFILE