Forrest logo
back to context overview

mktemp

List of commands for mktemp:

  • mktemp:tldr:1979b mktemp: Create a temporary directory and print the absolute path to it.
    $ mktemp --directory
    try on your machine
    explain this command
  • mktemp:tldr:50f7d mktemp: Create an empty temporary file and print the absolute path to it.
    $ mktemp
    try on your machine
    explain this command
  • mktemp:tldr:5cdf0 mktemp: Create a temporary directory and print the absolute path to it.
    $ mktemp -d
    try on your machine
    explain this command
  • mktemp:tldr:a061b mktemp: Create an empty temporary file with a given suffix and print the absolute path to file.
    $ mktemp --suffix "${-ext}"
    try on your machine
    explain this command
back to context overview