Create temporary files for use by shell scripts
The mktemp command is used to create temporary files for use by shell scripts.
mktemp(options)(parameters)
-q: If an error occurs during execution, no information will be displayed;
-u: The temporary files will be deleted before mktemp ends;
-d: Create a directory instead of a file.
File: Specifies the temporary file to be created.