📜  yum list installed - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:48:41.886000             🧑  作者: Mango

Yum List Installed - Shell-Bash

Introduction

"Yum list installed" is a command in Shell-Bash that allows users to view a list of all installed packages on their Linux system using the package management tool: Yum. This command provides a comprehensive view of all installed packages and their versions in the system.

Usage

The command to run yum list installed is as follows:

yum list installed

This will return a list of all the installed packages with their package name, version and a brief description.

Markdown Output

The output of the command can be easily formatted into markdown as follows:

# List of Installed Packages

| Package Name | Version | Description |
|--------------|---------|-------------|
| package1     | version1| Description1|
| package2     | version2| Description2|
| package3     | version3| Description3|
| ...          | ...     | ...         |
Conclusion

In conclusion, "yum list installed" is a powerful command that can greatly benefit programmers and system administrators in managing their Linux systems. It provides a quick and easy way to view all installed packages and their versions. Additionally, the output can be formatted into markdown for easy documentation and sharing.