System Grab Bag

View all TLDR pages from Linux (or from all pages)

mktemp

Create a temporary file or directory. Note that examples here all assume $TMPDIR is unset. More information: https://www.gnu.org/software/autogen/mktemp.html.
  • Create an empty temporary file in /tmp/ and print its absolute path:
    mktemp
  • Create a temporary directory in /tmp/ and print its absolute path:
    mktemp --directory
  • Create an empty temporary file at the specified path, with Xs replaced with random alphanumeric characters, and print its path:
    mktemp "{{path/to/file_XXXXX_name}}"
  • Create an empty temporary file in /tmp/ with the specified name, with Xs replaced with random alphanumeric characters, and print its path:
    mktemp -t "{{file_XXXXX_name}}"

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.

Other Projects

This TLDR page is also found in other projects: