How to Install and Uninstall fmt-ptrn.x86_64 Package on Fedora 35

Last updated: September 28,2024

1. Install "fmt-ptrn.x86_64" package

This guide covers the steps necessary to install fmt-ptrn.x86_64 on Fedora 35

$ sudo dnf update $ sudo dnf install fmt-ptrn.x86_64

2. Uninstall "fmt-ptrn.x86_64" package

Please follow the step by step instructions below to uninstall fmt-ptrn.x86_64 on Fedora 35:

$ sudo dnf remove fmt-ptrn.x86_64 $ sudo dnf autoremove

3. Information about the fmt-ptrn.x86_64 package on Fedora 35

Last metadata expiration check: 1:23:56 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : fmt-ptrn
Version : 1.3.22
Release : 19.fc35
Architecture : x86_64
Size : 71 k
Source : fmt-ptrn-1.3.22-19.fc35.src.rpm
Repository : fedora
Summary : A simple template system
URL : http://www.flyn.org
License : GPLv2+
Description : New is a template system, especially useful in conjunction with a
: simple text editor such as vi. The user maintains templates which
: may contain format strings. At run time, nf replaces the format
: strings in a template with appropriate values to create a new file.
:
: For example, given the following template:
:
:
: // FILE: %(FILE)
: // AUTHOR: %(FULLNAME)
: // DATE: %(DATE)
:
: // Copyright (C) 1999 %(FULLNAME) %(EMAIL)
: // All rights reserved.
: nf will create:
:
:
: // FILE: foo.cpp
: // AUTHOR: W. Michael Petullo
: // DATE: 11 September 1999
:
: // Copyright (C) 1999 W. Michael Petullo [email protected]
: // All rights reserved.
: on my computer.
:
: The program understands plaintext or gziped template files.
:
: The fmt-ptrn system also provides a shared library which allows a
: programmer access to nf's functionality. The system was developed to
: be light and fast. Its only external dependencies are the C library,
: glib2 and zlib.