How to Install and Uninstall perl-File-Touch Package on openSuSE Tumbleweed

Last updated: April 18,2024

1. Install "perl-File-Touch" package

Please follow the guidance below to install perl-File-Touch on openSuSE Tumbleweed

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

2. Uninstall "perl-File-Touch" package

This guide covers the steps necessary to uninstall perl-File-Touch on openSuSE Tumbleweed:

$ sudo zypper remove perl-File-Touch

3. Information about the perl-File-Touch package on openSuSE Tumbleweed

Information for package perl-File-Touch:
----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-File-Touch
Version : 0.12-1.14
Arch : noarch
Vendor : openSUSE
Installed Size : 30.1 KiB
Installed : No
Status : not installed
Source package : perl-File-Touch-0.12-1.14.src
Upstream URL : https://metacpan.org/release/File-Touch
Summary : Update file access and modification times, optionally creating files if needed
Description :
This module provides both a functional and OO interface for changing the
file access and modification times on files. It can optionally create the
file for you, if it doesn't exist.
*Note*: you should specify a minimum version of 0.12, as per the SYNOPSIS,
as that fixed an issue that affected systems that have sub-second
granularity on those file times.
Here's a list of arguments that can be used with the object-oriented
contruction:
* atime_only => [0|1]
If nonzero, change only the access time of files. Default is zero.
* mtime_only => [0|1]
If nonzero, change only the modification time of files. Default is zero.
* no_create => [0|1]
If nonzero, do not create new files. Default is zero.
* reference => $reference_file
If defined, use timestamps from this file instead of current time. The
timestamps are read from the reference file when the object is created, not
when '<-'touch>> is invoked. Default is undefined.
* time => $time
If defined, then this value will be used for both access time and
modification time, whichever of those are set. This time is overridden by
the 'atime' and 'mtime' arguments, if you use them.
* atime => $time
If defined, use this time (in epoch seconds) instead of current time for
access time.
* mtime => $time
If defined, use this time (in epoch seconds) instead of current time for
modification time.