How to Install and Uninstall flex.src Package on Oracle Linux 9

Last updated: May 08,2024

1. Install "flex.src" package

In this section, we are going to explain the necessary steps to install flex.src on Oracle Linux 9

$ sudo dnf update $ sudo dnf install flex.src

2. Uninstall "flex.src" package

Please follow the instructions below to uninstall flex.src on Oracle Linux 9:

$ sudo dnf remove flex.src $ sudo dnf autoremove

3. Information about the flex.src package on Oracle Linux 9

Last metadata expiration check: 1:02:08 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : flex
Version : 2.6.4
Release : 9.el9
Architecture : src
Size : 1.4 M
Source : None
Repository : ol9_appstream
Summary : A tool for generating scanners (text pattern recognizers)
URL : https://github.com/westes/flex
License : BSD and LGPLv2+
Description : The flex program generates scanners. Scanners are programs which can
: recognize lexical patterns in text. Flex takes pairs of regular
: expressions and C code as input and generates a C source file as
: output. The output file is compiled and linked with a library to
: produce an executable. The executable searches through its input for
: occurrences of the regular expressions. When a match is found, it
: executes the corresponding C code. Flex was designed to work with
: both Yacc and Bison, and is used by many programs as part of their
: build process.
:
: You should install flex if you are going to use your system for
: application development.