Temporary files are used to temporarily store data that the operating system needs temporarily during operation and will disappear when no longer needed. they will disappear on their own after reboot.
This command in Linux allows the user to make a temporary file or directory in the tmp folder. Now we’re gonna teach you to use the mktemp command in Linux.
The syntax:
$ mktemp [option] … [template]
For example:
$ mktemp
Output:
You have just created a temporary file in the tmp directory. And the filename is also generated automatically.
To do this. Let’s add the option -d into the command:
$ mktemp -d
Output:
If you want to name the temporary file, add more than 3 X’s at the end. For example:
$ mktemp newfileXXX
Output:
Or you can name the temporary directory:
$ mktemp -d newdicXXX
Output:
To do this. Let’s add the option –suffix into the command. For example:
$ mktemp newfileXXX --suffix ".txt"
Output:
We just taught you to use the mktemp command in Linux.
Thank you for referring!
Karim Buzdar holds a degree in telecommunication engineering and holds several sysadmin certifications including CCNA RS, SCP, and ACE. As an IT engineer and technical author, he writes for various websites.
Career progression doesn’t follow a single path – and at Canonical, we embrace that. Our…
Canonical’s Platform Engineering team has been hard at work crafting documentation in Rockcraft and Charmcraft…
This is a follow-up to the End of Life warning sent earlier to confirm that…
July 10, 2025: Today, Canonical announced the release of Charmed Feast, an enterprise solution for…
For NVIDIA users, the latest 575 series driver will be available soon in Ubuntu repository.…
Amarok, the free open-source KDE music player, released new 3.3 version on Tuesday, named “Far…