How to Install and Uninstall perl-File-Temp Package on openSUSE Leap

Last updated: May 17,2024

1. Install "perl-File-Temp" package

Please follow the steps below to install perl-File-Temp on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-File-Temp

2. Uninstall "perl-File-Temp" package

In this section, we are going to explain the necessary steps to uninstall perl-File-Temp on openSUSE Leap:

$ sudo zypper remove perl-File-Temp

3. Information about the perl-File-Temp package on openSUSE Leap

Information for package perl-File-Temp:
---------------------------------------
Repository : Main Repository
Name : perl-File-Temp
Version : 0.2304-1.25
Arch : noarch
Vendor : SUSE LLC
Installed Size : 156.2 KiB
Installed : No
Status : not installed
Source package : perl-File-Temp-0.2304-1.25.src
Upstream URL : http://search.cpan.org/dist/File-Temp/
Summary : Return name and handle of a temporary file safely
Description :
'File::Temp' can be used to create and open temporary files in a safe way.
There is both a function interface and an object-oriented interface. The
File::Temp constructor or the tempfile() function can be used to return the
name and the open filehandle of a temporary file. The tempdir() function
can be used to create a temporary directory.
The security aspect of temporary file creation is emphasized such that a
filehandle and filename are returned together. This helps guarantee that a
race condition can not occur where the temporary file is created by another
process between checking for the existence of the file and its opening.
Additional security levels are provided to check, for example, that the
sticky bit is set on world writable directories. See the "safe_level"
manpage for more information.
For compatibility with popular C library functions, Perl implementations of
the mkstemp() family of functions are provided. These are, mkstemp(),
mkstemps(), mkdtemp() and mktemp().
Additionally, implementations of the standard POSIX tmpnam() and tmpfile()
functions are provided if required.
Implementations of mktemp(), tmpnam(), and tempnam() are provided, but
should be used with caution since they return only a filename that was
valid when function was called, so cannot guarantee that the file will not
exist by the time the caller opens the filename.
Filehandles returned by these functions support the seekable methods.