The official Fedora package for the xxd team?

I need to use an xxd based script, but it is not installed on my Fedora 21:

 $ xxd bash: xxd: command not found 

Therefore, I tried unsuccessfully to find and install it:

 $ yum install xxd (fails) $ yum search xxd (fails) $ yum search all xxd (fails - detailed log below) Loaded plugins: langpacks ================================================================= Matched: xxd ======== perl-Data-HexDump-XXD.noarch : Format hexadecimal dump like xxd xxdiff.i686 : Graphical file and directories comparator and merge tool xxdiff-tools.i686 : Tools for xxdiff 
  • Do you know which xxd package is provided? (I mean the official package for installing with yum from Fedora repositories).

Thanks in advance for your help!

+5
source share
2 answers

xxd is in the vim-common package.

You can find this using yum whatprovides '*bin/xxd' .

+10
source

You tried

 yum install vim-common 
+5
source

Source: https://habr.com/ru/post/1245625/


All Articles