From 3df8a4b380d3d45a63d1c6fc2abf74e234ebf836 Mon Sep 17 00:00:00 2001 From: Andrea Date: Thu, 27 Oct 2016 21:46:11 +0100 Subject: [PATCH] yum: add "provides" example (#1132) "yum provides" is incredibly useful when you come from a different distro, and you don't know exactly what package provides a particular command. --- pages/linux/yum.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/linux/yum.md b/pages/linux/yum.md index 1782577f36..175706778b 100644 --- a/pages/linux/yum.md +++ b/pages/linux/yum.md @@ -14,6 +14,10 @@ `yum -y install {{package}}` +- Find the package that provides a particular command: + +`yum provides {{command}}` + - Remove a package: `yum remove {{package}}`