How To Install zsh-html on CentOS 7

In this tutorial we learn how to install zsh-html on CentOS 7. zsh-html is Zsh shell manual in html format

Introduction

In this tutorial we learn how to install zsh-html on CentOS 7.

What is zsh-html

The zsh shell is a command interpreter usable as an interactive login shell and as a shell script command processor. Zsh resembles the ksh shell (the Korn shell), but includes many enhancements. Zsh supports command line editing, built-in spelling correction, programmable command completion, shell functions (with autoloading), a history mechanism, and more. This package contains the Zsh manual in html format.

We can use yum or dnf to install zsh-html on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install zsh-html.

Install zsh-html on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install zsh-html using yum by running the following command:

sudo yum -y install zsh-html

Install zsh-html on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install zsh-html using dnf by running the following command:

sudo dnf -y install zsh-html

How To Uninstall zsh-html on CentOS 7

To uninstall only the zsh-html package we can use the following command:

sudo dnf remove zsh-html

References

Summary

In this tutorial we learn how to install zsh-html on CentOS 7 using yum and dnf.