commit
82104edddc
@ -0,0 +1,23 @@
|
||||
module polymer
|
||||
|
||||
go 1.18
|
||||
|
||||
require (
|
||||
github.com/goccy/go-yaml v1.9.5
|
||||
github.com/jwalton/gchalk v1.3.0
|
||||
github.com/rs/zerolog v1.27.0
|
||||
github.com/spf13/pflag v1.0.5
|
||||
github.com/thoas/go-funk v0.9.2
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/fatih/color v1.10.0 // indirect
|
||||
github.com/jwalton/go-supportscolor v1.1.0 // indirect
|
||||
github.com/mattn/go-colorable v0.1.12 // indirect
|
||||
github.com/mattn/go-isatty v0.0.14 // indirect
|
||||
golang.org/x/sys v0.0.0-20211004093028-2c5d950f24ef // indirect
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
|
||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
||||
)
|
||||
|
||||
replace internal/packages => ./internal/packages
|
@ -0,0 +1,66 @@
|
||||
github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
|
||||
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
|
||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||
github.com/fatih/color v1.10.0 h1:s36xzo75JdqLaaWoiEHk767eHiwo0598uUxyfiPkDsg=
|
||||
github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=
|
||||
github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
|
||||
github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q=
|
||||
github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8=
|
||||
github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no=
|
||||
github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA=
|
||||
github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE=
|
||||
github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4=
|
||||
github.com/goccy/go-yaml v1.9.5 h1:Eh/+3uk9kLxG4koCX6lRMAPS1OaMSAi+FJcya0INdB0=
|
||||
github.com/goccy/go-yaml v1.9.5/go.mod h1:U/jl18uSupI5rdI2jmuCswEA2htH9eXfferR3KfscvA=
|
||||
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
|
||||
github.com/jwalton/gchalk v1.3.0 h1:uTfAaNexN8r0I9bioRTksuT8VGjrPs9YIXR1PQbtX/Q=
|
||||
github.com/jwalton/gchalk v1.3.0/go.mod h1:ytRlj60R9f7r53IAElbpq4lVuPOPNg2J4tJcCxtFqr8=
|
||||
github.com/jwalton/go-supportscolor v1.1.0 h1:HsXFJdMPjRUAx8cIW6g30hVSFYaxh9yRQwEWgkAR7lQ=
|
||||
github.com/jwalton/go-supportscolor v1.1.0/go.mod h1:hFVUAZV2cWg+WFFC4v8pT2X/S2qUUBYMioBD9AINXGs=
|
||||
github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y=
|
||||
github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII=
|
||||
github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
|
||||
github.com/mattn/go-colorable v0.1.12 h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=
|
||||
github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
|
||||
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
|
||||
github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
|
||||
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
|
||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/rs/xid v1.3.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
|
||||
github.com/rs/zerolog v1.27.0 h1:1T7qCieN22GVc8S4Q2yuexzBb1EqjbgjSH9RohbMjKs=
|
||||
github.com/rs/zerolog v1.27.0/go.mod h1:7frBqO0oezxmnO7GF86FY++uy8I0Tk/If5ni1G9Qc0U=
|
||||
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
|
||||
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
|
||||
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
|
||||
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
|
||||
github.com/thoas/go-funk v0.9.2 h1:oKlNYv0AY5nyf9g+/GhMgS/UO2ces0QRdPKwkhY3VCk=
|
||||
github.com/thoas/go-funk v0.9.2/go.mod h1:+IWnUfUmFO1+WVYQWQtIJHeRRdaIyyYglZN7xzUPe4Q=
|
||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=
|
||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
|
||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/sys v0.0.0-20211004093028-2c5d950f24ef h1:fPxZ3Umkct3LZ8gK9nbk+DWDJ9fstZa2grBn+lWVKPs=
|
||||
golang.org/x/sys v0.0.0-20211004093028-2c5d950f24ef/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
|
||||
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
|
||||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
|
||||
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
@ -0,0 +1,933 @@
|
||||
{
|
||||
"7za": "p7zip",
|
||||
"7zr": "p7zip",
|
||||
"a2disconf": "apache2",
|
||||
"a2dismod": "apache2",
|
||||
"a2dissite": "apache2",
|
||||
"a2enconf": "apache2",
|
||||
"a2enmod": "apache2",
|
||||
"a2ensite": "apache2",
|
||||
"a2query": "apache2",
|
||||
"ab": "apache2-utils",
|
||||
"ac": "acct",
|
||||
"ack": "ack",
|
||||
"acpi": "acpi",
|
||||
"acyclic": "graphviz",
|
||||
"addpart": "util-linux",
|
||||
"addr2line": "binutils",
|
||||
"airmon-ng": "aircrack-ng",
|
||||
"alias": "bash",
|
||||
"alien": "alien",
|
||||
"alpine": "alpine",
|
||||
"amixer": "alsa-utils",
|
||||
"ansible": "ansible",
|
||||
"ansible-doc": "ansible",
|
||||
"ansible-galaxy": "ansible",
|
||||
"ansible-inventory": "ansible",
|
||||
"ansible-playbook": "ansible",
|
||||
"ansible-pull": "ansible",
|
||||
"ansible-vault": "ansible",
|
||||
"apache2ctl": "apache2",
|
||||
"apg": "apg",
|
||||
"aplay": "alsa-utils",
|
||||
"arch": "coreutils",
|
||||
"arch-chroot": "arch-install-scripts",
|
||||
"arecord": "alsa-utils",
|
||||
"aria2c": "aria2",
|
||||
"arp": "net-tools",
|
||||
"arping": "arping",
|
||||
"as": "binutils",
|
||||
"asciidoctor": "asciidoctor",
|
||||
"asciinema": "asciinema",
|
||||
"aspell": "aspell",
|
||||
"asterisk": "asterisk",
|
||||
"astyle": "astyle",
|
||||
"at": "at",
|
||||
"atq": "at",
|
||||
"atrm": "at",
|
||||
"autossh": "autossh",
|
||||
"avahi-browse": "avahi",
|
||||
"avrdude": "avrdude",
|
||||
"awk": "gawk",
|
||||
"axel": "axel",
|
||||
"b2sum": "coreutils",
|
||||
"badblocks": "e2fsprogs",
|
||||
"base32": "coreutils",
|
||||
"base64": "coreutils",
|
||||
"basename": "coreutils",
|
||||
"bash": "bash",
|
||||
"bc": "bc",
|
||||
"bcomps": "graphviz",
|
||||
"beanstalkd": "beanstalkd",
|
||||
"beep": "beep",
|
||||
"bg": "bash",
|
||||
"bison": "bison",
|
||||
"bitcoin-cli": "bitcoin-cli",
|
||||
"blkdiscard": "util-linux",
|
||||
"blkid": "util-linux",
|
||||
"bluetoothctl": "bluez",
|
||||
"bluetoothd": "bluez",
|
||||
"bmon": "bmon",
|
||||
"borg": "borgbackup",
|
||||
"brctl": "bridge-utils",
|
||||
"bshell": "avahi",
|
||||
"bspc": "bspwm",
|
||||
"bspwm": "bspwm",
|
||||
"bssh": "avahi",
|
||||
"btrbk": "btrbk",
|
||||
"btrfs": "btrfs-progs",
|
||||
"btrfs-restore": "btrfs-progs",
|
||||
"bundle": "ruby-bundler",
|
||||
"bundler": "ruby-bundler",
|
||||
"bvnc": "avahi",
|
||||
"bzegrep": "bzip2",
|
||||
"bzfgrep": "bzip2",
|
||||
"bzgrep": "bzip2",
|
||||
"bzip2": "bzip2",
|
||||
"c99": "gcc",
|
||||
"caddy": "caddy",
|
||||
"caja": "caja",
|
||||
"cal": "util-linux",
|
||||
"calcurse": "calcurse",
|
||||
"cargo": "cargo",
|
||||
"ccomps": "graphviz",
|
||||
"cd": "bash",
|
||||
"certbot": "certbot",
|
||||
"cfdisk": "util-linux",
|
||||
"chage": "shadow",
|
||||
"chattr": "e2fsprogs",
|
||||
"chcon": "coreutils",
|
||||
"chcpu": "util-linux",
|
||||
"chfn": "util-linux",
|
||||
"chgrp": "coreutils",
|
||||
"chmod": "coreutils",
|
||||
"chntpw": "chntpw",
|
||||
"chown": "coreutils",
|
||||
"chpasswd": "shadow",
|
||||
"chromium": "chromium",
|
||||
"chronyc": "chrony",
|
||||
"chroot": "coreutils",
|
||||
"chrt": "util-linux",
|
||||
"chsh": "util-linux",
|
||||
"circo": "graphviz",
|
||||
"cksum": "coreutils",
|
||||
"clamscan": "clamav",
|
||||
"clang": "clang",
|
||||
"clang++": "ccache",
|
||||
"clang-cpp": "clang",
|
||||
"clear": "ncurses",
|
||||
"cloc": "cloc",
|
||||
"cmake": "cmake",
|
||||
"cmark": "cmark",
|
||||
"cmp": "diffutils",
|
||||
"cmus": "cmus",
|
||||
"collectd": "collectd",
|
||||
"colordiff": "colordiff",
|
||||
"colrm": "util-linux",
|
||||
"column": "util-linux",
|
||||
"comm": "coreutils",
|
||||
"command": "bash",
|
||||
"compare": "imagemagick6",
|
||||
"composer": "composer",
|
||||
"conky": "conky",
|
||||
"convert": "imagemagick6",
|
||||
"cp": "coreutils",
|
||||
"cpio": "cpio",
|
||||
"cppcheck": "cppcheck",
|
||||
"cpufreq-aperf": "cpufrequtils",
|
||||
"cpufreq-info": "cpufrequtils",
|
||||
"cpufreq-set": "cpufrequtils",
|
||||
"cpulimit": "cpulimit",
|
||||
"createdb": "postgresql",
|
||||
"cryptsetup": "cryptsetup",
|
||||
"crystal": "crystal",
|
||||
"csc": "chicken",
|
||||
"csh": "tcsh",
|
||||
"csplit": "coreutils",
|
||||
"ctags": "ctags",
|
||||
"ctest": "cmake",
|
||||
"ctrlaltdel": "util-linux",
|
||||
"cupsd": "cups",
|
||||
"curl": "curl",
|
||||
"cut": "coreutils",
|
||||
"cvs": "cvs",
|
||||
"cwebp": "libwebp",
|
||||
"darkhttpd": "darkhttpd",
|
||||
"dash": "dash",
|
||||
"date": "coreutils",
|
||||
"dconf": "dconf",
|
||||
"dd": "coreutils",
|
||||
"ddrescue": "ddrescue",
|
||||
"debootstrap": "debootstrap",
|
||||
"debugfs": "e2fsprogs",
|
||||
"dep": "dep",
|
||||
"df": "coreutils",
|
||||
"dhclient": "dhclient",
|
||||
"diff": "diffutils",
|
||||
"diff3": "diffutils",
|
||||
"dig": "bind-tools",
|
||||
"dillo": "dillo",
|
||||
"dir": "coreutils",
|
||||
"dircolors": "coreutils",
|
||||
"dirname": "coreutils",
|
||||
"distccd": "distcc",
|
||||
"dmenu": "dmenu",
|
||||
"dmesg": "util-linux",
|
||||
"dmidecode": "dmidecode",
|
||||
"dnsrecon": "dnsrecon",
|
||||
"docker": "docker",
|
||||
"dockerd": "docker",
|
||||
"dos2unix": "dos2unix",
|
||||
"dot": "graphviz",
|
||||
"doxygen": "doxygen",
|
||||
"dpkg": "dpkg",
|
||||
"dpkg-deb": "dpkg",
|
||||
"dpkg-query": "dpkg",
|
||||
"drill": "ldns",
|
||||
"du": "coreutils",
|
||||
"dumpcap": "wireshark",
|
||||
"dumpe2fs": "e2fsprogs",
|
||||
"dune": "dune",
|
||||
"dunstify": "dunst",
|
||||
"duplicity": "duplicity",
|
||||
"dwebp": "libwebp",
|
||||
"e2freefrag": "e2fsprogs",
|
||||
"e2fsck": "e2fsprogs",
|
||||
"e2image": "e2fsprogs",
|
||||
"e2label": "e2fsprogs",
|
||||
"e2undo": "e2fsprogs",
|
||||
"e4defrag": "e2fsprogs",
|
||||
"echo": "coreutils",
|
||||
"ed": "ed",
|
||||
"edgepaint": "graphviz",
|
||||
"egrep": "grep",
|
||||
"eject": "util-linux",
|
||||
"elinks": "elinks",
|
||||
"elixir": "elixir",
|
||||
"emacs": "emacs",
|
||||
"emacsclient": "emacs-nox",
|
||||
"enca": "enca",
|
||||
"encfs": "encfs",
|
||||
"engrampa": "engrampa",
|
||||
"entr": "entr",
|
||||
"env": "coreutils",
|
||||
"envsubst": "gettext",
|
||||
"espeak": "espeak",
|
||||
"etckeeper": "etckeeper",
|
||||
"ethtool": "ethtool",
|
||||
"exec": "execline",
|
||||
"exiftool": "exiftool",
|
||||
"exit": "execline",
|
||||
"exiv2": "exiv2",
|
||||
"expand": "coreutils",
|
||||
"expect": "expect",
|
||||
"export": "execline",
|
||||
"expr": "coreutils",
|
||||
"factor": "coreutils",
|
||||
"fail2ban-client": "fail2ban",
|
||||
"fakeroot": "fakeroot",
|
||||
"fallocate": "util-linux",
|
||||
"false": "coreutils",
|
||||
"fatlabel": "dosfstools",
|
||||
"fc": "bash",
|
||||
"fc-cache": "fontconfig",
|
||||
"fc-list": "fontconfig",
|
||||
"fc-match": "fontconfig",
|
||||
"fc-pattern": "fontconfig",
|
||||
"fdisk": "util-linux",
|
||||
"fdp": "graphviz",
|
||||
"fdupes": "fdupes",
|
||||
"feh": "feh",
|
||||
"ffmpeg": "ffmpeg",
|
||||
"ffplay": "ffmpeg",
|
||||
"ffprobe": "ffmpeg",
|
||||
"fg": "bash",
|
||||
"fgrep": "grep",
|
||||
"figlet": "figlet",
|
||||
"file": "file",
|
||||
"filefrag": "e2fsprogs",
|
||||
"finch": "finch",
|
||||
"find": "findutils",
|
||||
"findfs": "util-linux",
|
||||
"findmnt": "util-linux",
|
||||
"firefox": "firefox",
|
||||
"firejail": "firejail",
|
||||
"fish": "fish",
|
||||
"flac": "flac",
|
||||
"flake8": "flake8",
|
||||
"flashrom": "flashrom",
|
||||
"flex": "flex",
|
||||
"flock": "util-linux",
|
||||
"fls": "sleuthkit",
|
||||
"fmt": "coreutils",
|
||||
"fold": "coreutils",
|
||||
"fossil": "fossil",
|
||||
"fping": "fping",
|
||||
"free": "procps",
|
||||
"fsck": "util-linux",
|
||||
"fstrim": "util-linux",
|
||||
"fuser": "psmisc",
|
||||
"fusermount": "fuse",
|
||||
"fzf": "fzf",
|
||||
"g++": "g++",
|
||||
"gcalcli": "gcalcli",
|
||||
"gcc": "gcc",
|
||||
"gcov": "gcc",
|
||||
"gdb": "gdb",
|
||||
"genfstab": "arch-install-scripts",
|
||||
"getfacl": "acl",
|
||||
"getopt": "util-linux",
|
||||
"ghc": "ghc",
|
||||
"ghci": "ghc",
|
||||
"gifsicle": "gifsicle",
|
||||
"gimp": "gimp",
|
||||
"git": "git",
|
||||
"git-lfs": "git-lfs",
|
||||
"glances": "glances",
|
||||
"gml2gv": "graphviz",
|
||||
"gnome-terminal": "gnome-terminal",
|
||||
"gnuplot": "gnuplot",
|
||||
"go": "go",
|
||||
"goaccess": "goaccess",
|
||||
"gource": "gource",
|
||||
"gpasswd": "shadow",
|
||||
"gpg": "gnupg",
|
||||
"gpg-zip": "gnupg",
|
||||
"gpg2": "gnupg",
|
||||
"gradle": "gradle",
|
||||
"graphml2gv": "graphviz",
|
||||
"grep": "grep",
|
||||
"groff": "groff",
|
||||
"groupadd": "shadow",
|
||||
"groupdel": "shadow",
|
||||
"groupmod": "shadow",
|
||||
"groups": "shadow",
|
||||
"grub-install": "grub",
|
||||
"grub-mkconfig": "grub",
|
||||
"gs": "ghostscript",
|
||||
"guile": "guile",
|
||||
"gunzip": "gzip",
|
||||
"gv2gml": "graphviz",
|
||||
"gv2gxl": "graphviz",
|
||||
"gvcolor": "graphviz",
|
||||
"gvpack": "graphviz",
|
||||
"gxl2gv": "graphviz",
|
||||
"gzip": "gzip",
|
||||
"hcitool": "bluez",
|
||||
"hdparm": "hdparm",
|
||||
"head": "perl-libwww",
|
||||
"help2man": "help2man",
|
||||
"hexdump": "util-linux",
|
||||
"hg": "mercurial",
|
||||
"highlight": "highlight",
|
||||
"hostapd": "hostapd",
|
||||
"hostid": "coreutils",
|
||||
"htop": "htop",
|
||||
"htpasswd": "apache2-utils",
|
||||
"http": "httpie",
|
||||
"httpry": "httpry",
|
||||
"hub": "hub",
|
||||
"hugo": "hugo",
|
||||
"hunspell": "hunspell",
|
||||
"hwclock": "util-linux",
|
||||
"i3lock": "i3lock",
|
||||
"id": "coreutils",
|
||||
"identify": "imagemagick6",
|
||||
"iex": "elixir",
|
||||
"if": "execline",
|
||||
"ifconfig": "net-tools",
|
||||
"iftop": "iftop",
|
||||
"ifup": "ifupdown",
|
||||
"imapsync": "imapsync",
|
||||
"indent": "indent",
|
||||
"inkscape": "inkscape",
|
||||
"inkview": "inkscape",
|
||||
"inotifywait": "inotify-tools",
|
||||
"interdiff": "patchutils",
|
||||
"ionice": "util-linux",
|
||||
"ioping": "ioping",
|
||||
"iostat": "sysstat",
|
||||
"iotop": "iotop",
|
||||
"ip": "iproute2",
|
||||
"ipcalc": "ipcalc",
|
||||
"ipcmk": "util-linux",
|
||||
"ipcrm": "util-linux",
|
||||
"ipcs": "util-linux",
|
||||
"iperf": "iperf",
|
||||
"iperf3": "iperf3",
|
||||
"ipset": "ipset",
|
||||
"iptables": "iptables",
|
||||
"irssi": "irssi",
|
||||
"isosize": "util-linux",
|
||||
"iw": "iw",
|
||||
"iwconfig": "wireless-tools",
|
||||
"jobs": "bash",
|
||||
"joe": "joe",
|
||||
"john": "john",
|
||||
"join": "coreutils",
|
||||
"jpegoptim": "jpegoptim",
|
||||
"jpegtran": "libjpeg-turbo",
|
||||
"jq": "jq",
|
||||
"julia": "julia",
|
||||
"kdig": "knot",
|
||||
"keyctl": "keyutils",
|
||||
"kill": "util-linux",
|
||||
"killall": "psmisc",
|
||||
"last": "util-linux",
|
||||
"lastb": "util-linux",
|
||||
"lastcomm": "acct",
|
||||
"lastlog": "shadow",
|
||||
"ldapsearch": "openldap",
|
||||
"less": "less",
|
||||
"lex": "flex",
|
||||
"lftp": "lftp",
|
||||
"libreoffice": "libreoffice-common",
|
||||
"line": "mesa-demos",
|
||||
"llc": "llvm",
|
||||
"lli": "llvm",
|
||||
"llvm-ar": "llvm",
|
||||
"llvm-as": "llvm",
|
||||
"llvm-bcanalyzer": "llvm",
|
||||
"llvm-dis": "llvm",
|
||||
"llvm-nm": "llvm",
|
||||
"llvm-objdump": "llvm",
|
||||
"ln": "coreutils",
|
||||
"local": "postfix",
|
||||
"locate": "mlocate",
|
||||
"logger": "util-linux",
|
||||
"login": "util-linux",
|
||||
"logname": "coreutils",
|
||||
"logsave": "e2fsprogs",
|
||||
"losetup": "util-linux",
|
||||
"lpass": "lastpass-cli",
|
||||
"lpinfo": "cups",
|
||||
"lpstat": "cups",
|
||||
"lrunzip": "lrzip",
|
||||
"lrzip": "lrzip",
|
||||
"lrztar": "lrzip",
|
||||
"lrzuntar": "lrzip",
|
||||
"ls": "coreutils",
|
||||
"lsattr": "e2fsprogs",
|
||||
"lsblk": "util-linux",
|
||||
"lscpu": "util-linux",
|
||||
"lshw": "lshw",
|
||||
"lslocks": "util-linux",
|
||||
"lslogins": "util-linux",
|
||||
"lsmod": "kmod",
|
||||
"lsns": "util-linux",
|
||||
"lsof": "lsof",
|
||||
"lspci": "pciutils",
|
||||
"lsscsi": "lsscsi",
|
||||
"lsusb": "usbutils",
|
||||
"ltrace": "ltrace",
|
||||
"lua": "lua",
|
||||
"luac": "lua",
|
||||
"lvcreate": "lvm2",
|
||||
"lvdisplay": "lvm2",
|
||||
"lvextend": "lvm2",
|
||||
"lvm": "lvm2",
|
||||
"lvreduce": "lvm2",
|
||||
"lvremove": "lvm2",
|
||||
"lvresize": "lvm2",
|
||||
"lvs": "lvm2",
|
||||
"lwp-request": "perl-libwww",
|
||||
"lxc": "lxc",
|
||||
"lxterminal": "lxterminal",
|
||||
"lynx": "lynx",
|
||||
"lz4": "lz4",
|
||||
"m4": "m4",
|
||||
"mac2unix": "dos2unix",
|
||||
"macchanger": "macchanger",
|
||||
"mail": "mailx",
|
||||
"mailx": "mailx",
|
||||
"make": "make",
|
||||
"makepasswd": "makepasswd",
|
||||
"makepkg": "pacman",
|
||||
"man": "man",
|
||||
"mate-about": "mate-desktop",
|
||||
"mate-calc": "mate-calc",
|
||||
"mate-calc-cmd": "mate-calc",
|
||||
"mate-screenshot": "mate-utils",
|
||||
"mate-search-tool": "mate-utils",
|
||||
"mc": "mc",
|
||||
"mcookie": "util-linux",
|
||||
"md5sum": "coreutils",
|
||||
"mdadm": "mdadm",
|
||||
"mediainfo": "mediainfo",
|
||||
"mesg": "util-linux",
|
||||
"meson": "meson",
|
||||
"minetest": "minetest",
|
||||
"minetestserver": "minetest-server",
|
||||
"mingle": "graphviz",
|
||||
"minicom": "minicom",
|
||||
"mix": "elixir",
|
||||
"mkdir": "coreutils",
|
||||
"mke2fs": "e2fsprogs",
|
||||
"mkfifo": "coreutils",
|
||||
"mkfs": "util-linux",
|
||||
"mkfs.btrfs": "btrfs-progs",
|
||||
"mkfs.cramfs": "util-linux",
|
||||
"mkfs.exfat": "exfat-utils",
|
||||
"mkfs.ext4": "e2fsprogs",
|
||||
"mkfs.fat": "dosfstools",
|
||||
"mkfs.minix": "util-linux",
|
||||
"mkfs.ntfs": "ntfs-3g",
|
||||
"mkfs.vfat": "dosfstools",
|
||||
"mklost+found": "e2fsprogs",
|
||||
"mknod": "coreutils",
|
||||
"mkswap": "util-linux",
|
||||
"mktemp": "coreutils",
|
||||
"mktorrent": "mktorrent",
|
||||
"mkvmerge": "mkvtoolnix",
|
||||
"mm2gv": "graphviz",
|
||||
"mmls": "sleuthkit",
|
||||
"mocp": "moc",
|
||||
"modinfo": "kmod",
|
||||
"modprobe": "kmod",
|
||||
"mogrify": "imagemagick6",
|
||||
"mongodump": "mongodb-tools",
|
||||
"mongoexport": "mongodb-tools",
|
||||
"mongoimport": "mongodb-tools",
|
||||
"mongorestore": "mongodb-tools",
|
||||
"montage": "imagemagick6",
|
||||
"more": "util-linux",
|
||||
"mosh": "mosh",
|
||||
"mosquitto": "mosquitto",
|
||||
"mosquitto_passwd": "mosquitto",
|
||||
"mosquitto_pub": "mosquitto",
|
||||
"mosquitto_sub": "mosquitto",
|
||||
"mountpoint": "util-linux",
|
||||
"mpc": "mpc",
|
||||
"mpd": "mpd",
|
||||
"mpg123": "mpg123",
|
||||
"mplayer": "mplayer",
|
||||
"mpstat": "sysstat",
|
||||
"mpv": "mpv",
|
||||
"mr": "myrepos",
|
||||
"msmtp": "msmtp",
|
||||
"mt": "mt-st",
|
||||
"mtr": "mtr",
|
||||
"multitail": "multitail",
|
||||
"mupdf": "mupdf",
|
||||
"mutool": "mupdf-tools",
|
||||
"mutt": "mutt",
|
||||
"mv": "coreutils",
|
||||
"mysql": "mysql",
|
||||
"named": "bind",
|
||||
"namei": "util-linux",
|
||||
"nano": "nano",
|
||||
"nasm": "nasm",
|
||||
"nautilus": "nautilus",
|
||||
"ncat": "nmap",
|
||||
"ncdu": "ncdu",
|
||||
"neato": "graphviz",
|
||||
"neofetch": "neofetch",
|
||||
"nethogs": "nethogs",
|
||||
"netstat": "net-tools",
|
||||
"newgrp": "util-linux",
|
||||
"newsboat": "newsboat",
|
||||
"next": "nmh",
|
||||
"nft": "nftables",
|
||||
"nginx": "nginx",
|
||||
"ngrep": "ngrep",
|
||||
"nice": "coreutils",
|
||||
"nikto": "nikto",
|
||||
"ninja": "ninja",
|
||||
"nl": "coreutils",
|
||||
"nload": "nload",
|
||||
"nm": "binutils",
|
||||
"nmap": "nmap",
|
||||
"nmcli": "networkmanager",
|
||||
"nmtui": "networkmanager",
|
||||
"nohup": "coreutils",
|
||||
"nologin": "util-linux",
|
||||
"nop": "graphviz",
|
||||
"notify-send": "libnotify",
|
||||
"notmuch": "notmuch",
|
||||
"npm": "npm",
|
||||
"nproc": "coreutils",
|
||||
"npx": "npm",
|
||||
"nsenter": "util-linux",
|
||||
"nslookup": "bind-tools",
|
||||
"ntfsfix": "ntfs-3g",
|
||||
"numfmt": "coreutils",
|
||||
"nvim": "neovim",
|
||||
"objdump": "binutils",
|
||||
"ocaml": "ocaml",
|
||||
"ocamlc": "ocaml",
|
||||
"ocamlfind": "ocaml-findlib",
|
||||
"ocamlopt": "ocaml",
|
||||
"ocrmypdf": "ocrmypdf",
|
||||
"od": "coreutils",
|
||||
"offlineimap": "offlineimap",
|
||||
"opam": "opam",
|
||||
"openrc": "openrc",
|
||||
"openssl": "openssl",
|
||||
"openvpn": "openvpn",
|
||||
"opt": "llvm",
|
||||
"optipng": "optipng",
|
||||
"opusenc": "opus-tools",
|
||||
"osage": "graphviz",
|
||||
"p7zip": "p7zip",
|
||||
"pacman": "pacman",
|
||||
"pacman-key": "pacman",
|
||||
"pacstrap": "arch-install-scripts",
|
||||
"pactl": "pulseaudio-utils",
|
||||
"pactree": "pacman",
|
||||
"parallel": "parallel",
|
||||
"parted": "parted",
|
||||
"partprobe": "parted",
|
||||
"partx": "util-linux",
|
||||
"paste": "coreutils",
|
||||
"pasuspender": "pulseaudio",
|
||||
"patch": "patch",
|
||||
"patchwork": "graphviz",
|
||||
"pathchk": "coreutils",
|
||||
"pdbedit": "samba",
|
||||
"pdffonts": "poppler",
|
||||
"pdfgrep": "pdfgrep",
|
||||
"pdfimages": "poppler",
|
||||
"pdfinfo": "poppler",
|
||||
"pdfseparate": "poppler",
|
||||
"pdftk": "pdftk",
|
||||
"pdftocairo": "poppler",
|
||||
"pdftoppm": "poppler",
|
||||
"pdftotext": "poppler",
|
||||
"pdfunite": "poppler",
|
||||
"perl": "perl",
|
||||
"pg_dump": "postgresql",
|
||||
"pg_dumpall": "postgresql",
|
||||
"pg_restore": "postgresql",
|
||||
"pgbench": "postgresql-contrib",
|
||||
"pgrep": "procps",
|
||||
"phar": "php",
|
||||
"photorec": "testdisk",
|
||||
"php": "php",
|
||||
"phpdismod": "php-common",
|
||||
"phpenmod": "php-common",
|
||||
"phpize": "php",
|
||||
"phpquery": "php-common",
|
||||
"pidstat": "sysstat",
|
||||
"pigz": "pigz",
|
||||
"ping": "iputils",
|
||||
"ping6": "iputils",
|
||||
"pinky": "coreutils",
|
||||
"pkill": "procps",
|
||||
"play": "sox",
|
||||
"pluma": "pluma",
|
||||
"pmap": "procps",
|
||||
"pngcrush": "pngcrush",
|
||||
"po4a": "po4a",
|
||||
"po4a-gettextize": "po4a",
|
||||
"po4a-translate": "po4a",
|
||||
"po4a-updatepo": "po4a",
|
||||
"postfix": "postfix",
|
||||
"powertop": "powertop",
|
||||
"pppd": "ppp",
|
||||
"pr": "coreutils",
|
||||
"printenv": "coreutils",
|
||||
"printf": "coreutils",
|
||||
"prlimit": "util-linux",
|
||||
"prosodyctl": "prosody",
|
||||
"protoc": "protobuf",
|
||||
"psql": "postgresql",
|
||||
"pssh": "pssh",
|
||||
"pstree": "psmisc",
|
||||
"ptargrep": "perl",
|
||||
"ptx": "coreutils",
|
||||
"pulseaudio": "pulseaudio",
|
||||
"pv": "pv",
|
||||
"pvcreate": "lvm2",
|
||||
"pvdisplay": "lvm2",
|
||||
"pvs": "lvm2",
|
||||
"pwd": "coreutils",
|
||||
"pwdx": "procps",
|
||||
"pwgen": "pwgen",
|
||||
"pyflakes": "pyflakes",
|
||||
"python": "python",
|
||||
"python3": "python3",
|
||||
"qpdf": "qpdf",
|
||||
"rapper": "raptor2",
|
||||
"raw": "util-linux",
|
||||
"rbash": "bash",
|
||||
"rc-service": "openrc",
|
||||
"rc-status": "openrc",
|
||||
"rc-update": "openrc",
|
||||
"rdesktop": "rdesktop",
|
||||
"rdfind": "rdfind",
|
||||
"read": "bash",
|
||||
"readelf": "binutils",
|
||||
"readlink": "coreutils",
|
||||
"realpath": "coreutils",
|
||||
"redis-cli": "redis",
|
||||
"redshift": "redshift",
|
||||
"rename": "util-linux",
|
||||
"renice": "util-linux",
|
||||
"repo-add": "pacman",
|
||||
"reset": "ncurses",
|
||||
"resize2fs": "e2fsprogs",
|
||||
"rev": "util-linux",
|
||||
"rgrep": "grep",
|
||||
"rm": "coreutils",
|
||||
"rmdir": "coreutils",
|
||||
"rmmod": "kmod",
|
||||
"route": "net-tools",
|
||||
"rpcinfo": "rpcbind",
|
||||
"rpm": "rpm",
|
||||
"rpmbuild": "rpm",
|
||||
"rpmspec": "rpm",
|
||||
"rspamc": "rspamd",
|
||||
"rspec": "ruby-rspec-core",
|
||||
"rsync": "rsync",
|
||||
"rtcwake": "util-linux",
|
||||
"rtmpdump": "rtmpdump",
|
||||
"rtorrent": "rtorrent",
|
||||
"ruby": "ruby",
|
||||
"runcon": "coreutils",
|
||||
"runit": "runit",
|
||||
"runsv": "runit",
|
||||
"runsvchdir": "runit",
|
||||
"runsvdir": "runit",
|
||||
"runuser": "util-linux",
|
||||
"rustc": "rust",
|
||||
"sa": "acct",
|
||||
"salt": "salt",
|
||||
"salt-call": "salt",
|
||||
"salt-key": "salt",
|
||||
"salt-run": "salt",
|
||||
"sar": "sysstat",
|
||||
"scan-build": "clang",
|
||||
"sccmap": "graphviz",
|
||||
"scp": "openssh-client",
|
||||
"screen": "screen",
|
||||
"script": "util-linux",
|
||||
"scriptreplay": "util-linux",
|
||||
"scrot": "scrot",
|
||||
"sdiff": "diffutils",
|
||||
"sed": "sed",
|
||||
"seq": "coreutils",
|
||||
"setfacl": "acl",
|
||||
"setsid": "util-linux",
|
||||
"sfdp": "graphviz",
|
||||
"sfill": "secure-delete",
|
||||
"sftp": "openssh",
|
||||
"sh": "bash",
|
||||
"sha1sum": "coreutils",
|
||||
"sha224sum": "coreutils",
|
||||
"sha256sum": "coreutils",
|
||||
"sha384sum": "coreutils",
|
||||
"sha512sum": "coreutils",
|
||||
"shards": "shards",
|
||||
"shasum": "perl",
|
||||
"shift": "execline",
|
||||
"showfigfonts": "figlet",
|
||||
"shred": "coreutils",
|
||||
"shuf": "coreutils",
|
||||
"sic": "sic",
|
||||
"sleep": "coreutils",
|
||||
"smartctl": "smartmontools",
|
||||
"smbpasswd": "samba",
|
||||
"smem": "smem",
|
||||
"snmpwalk": "net-snmp",
|
||||
"socat": "socat",
|
||||
"sort": "coreutils",
|
||||
"sox": "sox",
|
||||
"speedometer": "speedometer",
|
||||
"speedtest": "speedtest-cli",
|
||||
"speedtest-cli": "speedtest-cli",
|
||||
"sqlite3": "sqlite",
|
||||
"srm": "secure-delete",
|
||||
"ss": "iproute2",
|
||||
"ssh": "openssh-client",
|
||||
"ssh-add": "openssh",
|
||||
"ssh-agent": "openssh-client",
|
||||
"ssh-copy-id": "openssh-client",
|
||||
"ssh-keygen": "openssh",
|
||||
"ssh-keyscan": "openssh",
|
||||
"sshd": "openssh",
|
||||
"sshfs": "sshfs",
|
||||
"sshpass": "sshpass",
|
||||
"st": "st",
|
||||
"st-flash": "stlink",
|
||||
"st-info": "stlink",
|
||||
"st-util": "stlink",
|
||||
"stat": "coreutils",
|
||||
"stdbuf": "coreutils",
|
||||
"stow": "stow",
|
||||
"strace": "strace",
|
||||
"strings": "binutils",
|
||||
"strip": "binutils",
|
||||
"stty": "coreutils",
|
||||
"su": "util-linux",
|
||||
"sudo": "sudo",
|
||||
"sum": "coreutils",
|
||||
"supervisorctl": "supervisor",
|
||||
"supervisord": "supervisor",
|
||||
"sv": "runit",
|
||||
"svn": "subversion",
|
||||
"swapoff": "util-linux",
|
||||
"swapon": "util-linux",
|
||||
"swig": "swig",
|
||||
"sxiv": "sxiv",
|
||||
"sync": "coreutils",
|
||||
"syncthing": "syncthing",
|
||||
"sysctl": "procps",
|
||||
"tac": "coreutils",
|
||||
"tail": "coreutils",
|
||||
"tar": "tar",
|
||||
"task": "task",
|
||||
"taskset": "util-linux",
|
||||
"tcpdump": "tcpdump",
|
||||
"tcpflow": "tcpflow",
|
||||
"tcptraceroute": "tcptraceroute",
|
||||
"tcsh": "tcsh",
|
||||
"tee": "coreutils",
|
||||
"terminator": "terminator",
|
||||
"terraform": "terraform",
|
||||
"test": "coreutils",
|
||||
"tic": "ncurses",
|
||||
"tig": "tig",
|
||||
"timeout": "coreutils",
|
||||
"tlp": "tlp",
|
||||
"tlp-stat": "tlp",
|
||||
"tmux": "tmux",
|
||||
"top": "procps",
|
||||
"touch": "coreutils",
|
||||
"tput": "ncurses",
|
||||
"tracepath": "iputils",
|
||||
"transmission-cli": "transmission-cli",
|
||||
"transmission-create": "transmission-cli",
|
||||
"transmission-remote": "transmission-cli",
|
||||
"trap": "execline",
|
||||
"tred": "graphviz",
|
||||
"tree": "tree",
|
||||
"true": "coreutils",
|
||||
"truncate": "coreutils",
|
||||
"trust": "p11-kit-trust",
|
||||
"tshark": "tshark",
|
||||
"tsort": "coreutils",
|
||||
"tty": "coreutils",
|
||||
"tune2fs": "e2fsprogs",
|
||||
"twm": "twm",
|
||||
"twopi": "graphviz",
|
||||
"type": "bash",
|
||||
"udevadm": "udev",
|
||||
"udisksctl": "udisks2",
|
||||
"ulimit": "bash",
|
||||
"umask": "bash",
|
||||
"umount": "util-linux",
|
||||
"unalias": "bash",
|
||||
"uname": "coreutils",
|
||||
"uncrustify": "uncrustify",
|
||||
"unexpand": "coreutils",
|
||||
"unflatten": "graphviz",
|
||||
"uniq": "coreutils",
|
||||
"unison": "unison",
|
||||
"unix2dos": "dos2unix",
|
||||
"unix2mac": "dos2unix",
|
||||
"unlink": "coreutils",
|
||||
"unrar": "unrar",
|
||||
"unshadow": "john",
|
||||
"unshare": "util-linux",
|
||||
"unzip": "unzip",
|
||||
"update-alternatives": "dpkg",
|
||||
"updatedb": "mlocate",
|
||||
"upower": "upower",
|
||||
"uprecords": "uptimed",
|
||||
"uptime": "procps",
|
||||
"upx": "upx",
|
||||
"urxvt": "rxvt-unicode",
|
||||
"useradd": "shadow",
|
||||
"userdel": "shadow",
|
||||
"usermod": "shadow",
|
||||
"users": "coreutils",
|
||||
"utmpdump": "util-linux",
|
||||
"uudecode": "sharutils",
|
||||
"uuencode": "sharutils",
|
||||
"uuidgen": "util-linux",
|
||||
"v4l2-ctl": "v4l-utils",
|
||||
"vala": "vala",
|
||||
"valac": "vala",
|
||||
"valgrind": "valgrind",
|
||||
"varnishlog": "varnish",
|
||||
"vdir": "coreutils",
|
||||
"vgchange": "lvm2",
|
||||
"vgcreate": "lvm2",
|
||||
"vgdisplay": "lvm2",
|
||||
"vgs": "lvm2",
|
||||
"vgscan": "lvm2",
|
||||
"vim": "vim",
|
||||
"vimdiff": "vim",
|
||||
"vimtutor": "vim",
|
||||
"vipw": "util-linux",
|
||||
"virsh": "libvirt",
|
||||
"virt-clone": "virt-install",
|
||||
"virt-install": "virt-install",
|
||||
"virt-manager": "virt-manager",
|
||||
"visudo": "sudo",
|
||||
"vlc": "vlc",
|
||||
"vmstat": "procps",
|
||||
"vmware-checkvm": "open-vm-tools",
|
||||
"vnstat": "vnstat",
|
||||
"w3m": "w3m",
|
||||
"wait": "bash",
|
||||
"wall": "util-linux",
|
||||
"wasm-opt": "binaryen",
|
||||
"watch": "procps",
|
||||
"wc": "coreutils",
|
||||
"wdctl": "util-linux",
|
||||
"wget": "wget",
|
||||
"whereis": "util-linux",
|
||||
"which": "which",
|
||||
"whiptail": "newt",
|
||||
"who": "coreutils",
|
||||
"whoami": "coreutils",
|
||||
"whois": "whois",
|
||||
"wine": "wine",
|
||||
"wipefs": "util-linux",
|
||||
"wpa_cli": "wpa_supplicant",
|
||||
"wpa_passphrase": "wpa_supplicant",
|
||||
"wpa_supplicant": "wpa_supplicant",
|
||||
"write": "util-linux",
|
||||
"wrk": "wrk",
|
||||
"x11vnc": "x11vnc",
|
||||
"xargs": "findutils",
|
||||
"xbacklight": "xbacklight",
|
||||
"xclip": "xclip",
|
||||
"xdg-desktop-menu": "xdg-utils",
|
||||
"xdg-mime": "xdg-utils",
|
||||
"xdg-open": "xdg-utils",
|
||||
"xdotool": "xdotool",
|
||||
"xfce4-screenshooter": "xfce4-screenshooter",
|
||||
"xfce4-terminal": "xfce4-terminal",
|
||||
"xfreerdp": "freerdp",
|
||||
"xgettext": "gettext",
|
||||
"xinput": "xinput",
|
||||
"xkcdpass": "xkcdpass",
|
||||
"xml": "xmlstarlet",
|
||||
"xmllint": "libxml2",
|
||||
"xmlto": "xmlto",
|
||||
"xpdf": "xpdf",
|
||||
"xterm": "xterm",
|
||||
"xvfb-run": "xvfb",
|
||||
"xz": "xz",
|
||||
"yarn": "yarn",
|
||||
"yes": "coreutils",
|
||||
"ykinfo": "ykpers",
|
||||
"you-get": "you-get",
|
||||
"youtube-dl": "youtube-dl",
|
||||
"zathura": "zathura",
|
||||
"zcat": "gzip",
|
||||
"zegrep": "gzip",
|
||||
"zenity": "zenity",
|
||||
"zgrep": "gzip",
|
||||
"zip": "zip",
|
||||
"zipgrep": "unzip",
|
||||
"zipinfo": "unzip",
|
||||
"zless": "gzip",
|
||||
"zlib-flate": "qpdf",
|
||||
"zmore": "gzip",
|
||||
"zramctl": "util-linux",
|
||||
"zsh": "zsh",
|
||||
"zstd": "zstd"
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,796 @@
|
||||
{
|
||||
"2to3": "2to3",
|
||||
"ab": "httpd-tools",
|
||||
"ac": "acct",
|
||||
"acyclic": "graphviz",
|
||||
"addpart": "util-linux",
|
||||
"addr2line": "binutils",
|
||||
"adduser": "adduser",
|
||||
"alias": "bash",
|
||||
"alternatives": "chkconfig",
|
||||
"amixer": "alsa-utils",
|
||||
"ansible": "ansible",
|
||||
"ansible-doc": "ansible",
|
||||
"ansible-galaxy": "ansible",
|
||||
"ansible-inventory": "ansible",
|
||||
"ansible-playbook": "ansible",
|
||||
"ansible-pull": "ansible",
|
||||
"ansible-vault": "ansible",
|
||||
"ant": "ant",
|
||||
"aplay": "alsa-utils",
|
||||
"apropos": "man-db",
|
||||
"apt": "apt",
|
||||
"ar": "binutils-aarch64-linux-gnu",
|
||||
"arch": "coreutils",
|
||||
"arecord": "alsa-utils",
|
||||
"ark": "ark",
|
||||
"arp": "net-tools",
|
||||
"arping": "iputils-arping",
|
||||
"as": "binutils",
|
||||
"aspell": "aspell",
|
||||
"at": "at",
|
||||
"atq": "at",
|
||||
"atrm": "at",
|
||||
"auditd": "auditd",
|
||||
"authconfig": "authconfig",
|
||||
"avahi-browse": "avahi-tools",
|
||||
"awk": "gawk",
|
||||
"aws": "awscli",
|
||||
"b2sum": "coreutils",
|
||||
"badblocks": "e2fsprogs",
|
||||
"base32": "coreutils",
|
||||
"base64": "coreutils",
|
||||
"basename": "coreutils",
|
||||
"bash": "bash",
|
||||
"bat": "bacula-console-bat",
|
||||
"bc": "bc",
|
||||
"bcomps": "graphviz",
|
||||
"bg": "bash",
|
||||
"bison": "bison",
|
||||
"blkdiscard": "util-linux",
|
||||
"blkid": "util-linux",
|
||||
"bluetoothctl": "bluez",
|
||||
"bluetoothd": "bluez",
|
||||
"boltctl": "bolt",
|
||||
"bootctl": "systemd",
|
||||
"bpftool": "bpftool",
|
||||
"brctl": "bridge-utils",
|
||||
"bshell": "avahi-ui-tools",
|
||||
"bssh": "avahi-ui-tools",
|
||||
"btrfs": "btrfs-progs",
|
||||
"btrfs-restore": "btrfs-progs",
|
||||
"bundle": "ruby-bundler",
|
||||
"bundler": "ruby-bundler",
|
||||
"bvnc": "avahi-ui-tools",
|
||||
"bzegrep": "bzip2",
|
||||
"bzfgrep": "bzip2",
|
||||
"bzgrep": "bzip2",
|
||||
"bzip2": "bzip2",
|
||||
"c99": "gcc",
|
||||
"cal": "util-linux",
|
||||
"ccomps": "graphviz",
|
||||
"cd": "bash",
|
||||
"ceph": "ceph-common",
|
||||
"cfdisk": "util-linux",
|
||||
"cgcreate": "libcgroup",
|
||||
"cgexec": "libcgroup",
|
||||
"chattr": "e2fsprogs",
|
||||
"chcon": "coreutils",
|
||||
"chcpu": "util-linux",
|
||||
"chfn": "util-linux-ng",
|
||||
"chgrp": "coreutils",
|
||||
"chkconfig": "chkconfig",
|
||||
"chmod": "coreutils",
|
||||
"chown": "coreutils",
|
||||
"chronyc": "chrony",
|
||||
"chroot": "coreutils",
|
||||
"chrt": "util-linux",
|
||||
"chsh": "util-linux-ng",
|
||||
"circo": "graphviz",
|
||||
"cksum": "coreutils",
|
||||
"clang": "clang",
|
||||
"clang++": "clang",
|
||||
"clang-cpp": "clang",
|
||||
"clang-format": "clang-format",
|
||||
"clear": "ncurses",
|
||||
"cloud-init": "cloud-init",
|
||||
"cmake": "cmake",
|
||||
"cmp": "diffutils",
|
||||
"colrm": "util-linux",
|
||||
"column": "util-linux",
|
||||
"comm": "coreutils",
|
||||
"command": "bash",
|
||||
"conntrack": "conntrack",
|
||||
"convmv": "convmv",
|
||||
"coredumpctl": "systemd",
|
||||
"cp": "coreutils",
|
||||
"cpio": "cpio",
|
||||
"cpufreq-aperf": "cpufrequtils",
|
||||
"cpufreq-info": "cpufrequtils",
|
||||
"cpufreq-set": "cpufrequtils",
|
||||
"cpuid": "cpuid",
|
||||
"cpupower": "linux-cpupower",
|
||||
"createdb": "postgresql",
|
||||
"createrepo": "createrepo",
|
||||
"crontab": "cronie",
|
||||
"cryptsetup": "cryptsetup",
|
||||
"csh": "tcsh",
|
||||
"csplit": "coreutils",
|
||||
"csvtool": "csvtool",
|
||||
"ctags": "ctags",
|
||||
"ctest": "cmake",
|
||||
"ctrlaltdel": "util-linux",
|
||||
"curl": "curl",
|
||||
"cut": "coreutils",
|
||||
"cvs": "cvs",
|
||||
"cwebp": "libwebp-tools",
|
||||
"dash": "dash",
|
||||
"date": "coreutils",
|
||||
"dbus-daemon": "dbus-daemon-1",
|
||||
"dc": "dc",
|
||||
"dconf": "dconf",
|
||||
"dd": "coreutils",
|
||||
"debugfs": "e2fsprogs",
|
||||
"df": "coreutils",
|
||||
"dhclient": "dhclient",
|
||||
"diff": "diffutils",
|
||||
"diff3": "diffutils",
|
||||
"diffstat": "diffstat",
|
||||
"dir": "coreutils",
|
||||
"dircolors": "coreutils",
|
||||
"dirname": "coreutils",
|
||||
"dmesg": "util-linux",
|
||||
"dmidecode": "dmidecode",
|
||||
"dnf": "dnf",
|
||||
"docker": "docker.io",
|
||||
"dolphin": "dolphin",
|
||||
"dos2unix": "dos2unix",
|
||||
"dot": "graphviz",
|
||||
"doxygen": "doxygen",
|
||||
"drill": "ldns",
|
||||
"dstat": "dstat",
|
||||
"du": "coreutils",
|
||||
"dumpcap": "wireshark",
|
||||
"dumpe2fs": "e2fsprogs",
|
||||
"dwebp": "libwebp-tools",
|
||||
"e2freefrag": "e2fsprogs",
|
||||
"e2fsck": "e2fsprogs",
|
||||
"e2image": "e2fsprogs",
|
||||
"e2label": "e2fsprogs",
|
||||
"e2undo": "e2fsprogs",
|
||||
"e4defrag": "e2fsprogs",
|
||||
"echo": "coreutils",
|
||||
"ed": "ed",
|
||||
"edgepaint": "graphviz",
|
||||
"efibootmgr": "efibootmgr",
|
||||
"egrep": "grep",
|
||||
"eject": "eject",
|
||||
"elinks": "elinks",
|
||||
"emacs": "emacs-1",
|
||||
"enscript": "enscript",
|
||||
"env": "coreutils",
|
||||
"envsubst": "gettext",
|
||||
"eqn": "groff-base",
|
||||
"espeak": "espeak",
|
||||
"etcd": "etcd",
|
||||
"etcdctl": "etcd",
|
||||
"ethtool": "ethtool",
|
||||
"exiv2": "exiv2",
|
||||
"expand": "coreutils",
|
||||
"expect": "expect",
|
||||
"expr": "coreutils",
|
||||
"factor": "coreutils",
|
||||
"faillock": "pam",
|
||||
"fakeroot": "fakeroot",
|
||||
"fallocate": "util-linux",
|
||||
"false": "coreutils",
|
||||
"fatlabel": "dosfstools",
|
||||
"fc": "bash",
|
||||
"fc-cache": "fontconfig",
|
||||
"fc-list": "fontconfig",
|
||||
"fc-match": "fontconfig",
|
||||
"fc-pattern": "fontconfig",
|
||||
"fdisk": "util-linux",
|
||||
"fdp": "graphviz",
|
||||
"fg": "bash",
|
||||
"fgrep": "grep",
|
||||
"file": "file",
|
||||
"filefrag": "e2fsprogs",
|
||||
"finch": "finch",
|
||||
"find": "findutils",
|
||||
"findfs": "util-linux",
|
||||
"findmnt": "util-linux",
|
||||
"finger": "finger",
|
||||
"fio": "fio",
|
||||
"firefox": "firefox",
|
||||
"firewall-cmd": "firewalld",
|
||||
"flac": "flac",
|
||||
"flatpak": "flatpak",
|
||||
"flatpak-builder": "flatpak-builder",
|
||||
"flex": "flex",
|
||||
"flock": "util-linux",
|
||||
"fmt": "coreutils",
|
||||
"fold": "coreutils",
|
||||
"fprintd-delete": "fprintd",
|
||||
"fprintd-enroll": "fprintd",
|
||||
"fprintd-list": "fprintd",
|
||||
"fprintd-verify": "fprintd",
|
||||
"free": "procps-ng",
|
||||
"fsck": "util-linux",
|
||||
"fstrim": "util-linux",
|
||||
"fuser": "psmisc",
|
||||
"fusermount": "fuse",
|
||||
"fwupdmgr": "fwupd",
|
||||
"g++": "g++",
|
||||
"gcc": "gcc",
|
||||
"gcov": "gcc",
|
||||
"gdb": "gdb",
|
||||
"gedit": "gedit",
|
||||
"gem": "rubygems",
|
||||
"getent": "glibc-common",
|
||||
"getfacl": "acl",
|
||||
"getopt": "util-linux",
|
||||
"gimp": "gimp",
|
||||
"git": "git",
|
||||
"gitk": "gitk",
|
||||
"glib-compile-resources": "glib2-devel",
|
||||
"gml2gv": "graphviz",
|
||||
"gnome-calculator": "gnome-calculator",
|
||||
"gnome-screenshot": "gnome-screenshot",
|
||||
"gnome-software": "gnome-software",
|
||||
"gnome-terminal": "gnome-terminal",
|
||||
"gnuplot": "gnuplot",
|
||||
"gofmt": "gcc-go",
|
||||
"gpg": "gpg",
|
||||
"gpg-zip": "gnupg2",
|
||||
"gpg2": "gnupg2",
|
||||
"gpgv": "gpgv",
|
||||
"graphml2gv": "graphviz",
|
||||
"grep": "grep",
|
||||
"groff": "groff",
|
||||
"groups": "coreutils",
|
||||
"grub-mkconfig": "grub",
|
||||
"gs": "ghostscript",
|
||||
"gsettings": "glib2",
|
||||
"guile": "guile-2.0-libs",
|
||||
"gunicorn": "gunicorn",
|
||||
"gunzip": "gzip",
|
||||
"gv2gml": "graphviz",
|
||||
"gv2gxl": "graphviz",
|
||||
"gvcolor": "graphviz",
|
||||
"gvpack": "graphviz",
|
||||
"gxl2gv": "graphviz",
|
||||
"gzip": "gzip",
|
||||
"halt": "usermode",
|
||||
"hcitool": "bluez",
|
||||
"hdparm": "hdparm",
|
||||
"head": "perl-libwww-perl",
|
||||
"help2man": "help2man",
|
||||
"hexdump": "util-linux",
|
||||
"hg": "mercurial",
|
||||
"highlight": "highlight",
|
||||
"host": "bind9-host",
|
||||
"hostid": "coreutils",
|
||||
"hostname": "hostname",
|
||||
"hostnamectl": "systemd",
|
||||
"htpasswd": "httpd-tools",
|
||||
"hunspell": "hunspell",
|
||||
"hwclock": "util-linux",
|
||||
"iconv": "glibc-common",
|
||||
"id": "coreutils",
|
||||
"ifconfig": "net-tools",
|
||||
"ifup": "ifupdown",
|
||||
"indent": "indent",
|
||||
"info": "info",
|
||||
"initdb": "postgresql-server",
|
||||
"inkscape": "inkscape",
|
||||
"inkview": "inkscape-view",
|
||||
"interdiff": "patchutils",
|
||||
"ionice": "util-linux",
|
||||
"iostat": "sysstat",
|
||||
"iotop": "iotop",
|
||||
"ip": "iproute2",
|
||||
"ipcalc": "ipcalc",
|
||||
"ipcmk": "util-linux",
|
||||
"ipcrm": "util-linux",
|
||||
"ipcs": "util-linux",
|
||||
"iperf3": "iperf3",
|
||||
"ipset": "ipset",
|
||||
"iptables": "iptables",
|
||||
"irssi": "irssi",
|
||||
"isoinfo": "genisoimage",
|
||||
"isosize": "util-linux",
|
||||
"ispell": "ispell",
|
||||
"iw": "iw",
|
||||
"java": "java",
|
||||
"jobs": "bash",
|
||||
"join": "coreutils",
|
||||
"journalctl": "systemd",
|
||||
"jpegtran": "libjpeg-turbo",
|
||||
"jwt": "python-jwt",
|
||||
"kate": "kate",
|
||||
"kdialog": "kdialog",
|
||||
"kexec": "kexec-tools",
|
||||
"keyctl": "keyutils",
|
||||
"kill": "util-linux",
|
||||
"killall": "psmisc",
|
||||
"konsole": "konsole",
|
||||
"kpartx": "kpartx",
|
||||
"kscreen-doctor": "libkscreen",
|
||||
"ksh": "ksh",
|
||||
"kubectl": "kubernetes-client",
|
||||
"kwrite": "kwrite",
|
||||
"last": "sysvinit-tools",
|
||||
"lastb": "sysvinit-tools",
|
||||
"lastcomm": "psacct",
|
||||
"latex": "texlive-latex-base",
|
||||
"ldconfig": "glibc",
|
||||
"ldd": "glibc-common",
|
||||
"ledctl": "ledmon",
|
||||
"less": "less",
|
||||
"lex": "flex",
|
||||
"lftp": "lftp",
|
||||
"libreoffice": "libreoffice-common",
|
||||
"line": "mesa-demos",
|
||||
"llc": "llvm",
|
||||
"lldb": "lldb",
|
||||
"lli": "llvm",
|
||||
"llvm-ar": "llvm",
|
||||
"llvm-as": "llvm",
|
||||
"llvm-bcanalyzer": "llvm",
|
||||
"llvm-dis": "llvm",
|
||||
"llvm-nm": "llvm",
|
||||
"llvm-objdump": "llvm",
|
||||
"ln": "coreutils",
|
||||
"local": "postfix",
|
||||
"locale": "glibc-common",
|
||||
"localectl": "systemd",
|
||||
"locate": "mlocate",
|
||||
"logger": "util-linux",
|
||||
"login": "util-linux",
|
||||
"logname": "coreutils",
|
||||
"logsave": "e2fsprogs",
|
||||
"logwatch": "logwatch",
|
||||
"losetup": "util-linux",
|
||||
"lp": "lprng",
|
||||
"lpr": "lpr",
|
||||
"ls": "coreutils",
|
||||
"lsattr": "e2fsprogs",
|
||||
"lsb_release": "redhat-lsb-core",
|
||||
"lsblk": "util-linux",
|
||||
"lscpu": "util-linux",
|
||||
"lshw": "lshw",
|
||||
"lslocks": "util-linux",
|
||||
"lslogins": "util-linux",
|
||||
"lsmod": "kmod",
|
||||
"lsns": "util-linux",
|
||||
"lsof": "lsof",
|
||||
"lspci": "pciutils",
|
||||
"lsscsi": "lsscsi",
|
||||
"lsusb": "usbutils",
|
||||
"ltrace": "ltrace",
|
||||
"lua": "lua",
|
||||
"luac": "lua",
|
||||
"lvcreate": "lvm2",
|
||||
"lvdisplay": "lvm2",
|
||||
"lvextend": "lvm2",
|
||||
"lvm": "lvm2",
|
||||
"lvreduce": "lvm2",
|
||||
"lvremove": "lvm2",
|
||||
"lvresize": "lvm2",
|
||||
"lvs": "lvm2",
|
||||
"lwp-request": "perl-libwww-perl",
|
||||
"lynx": "lynx",
|
||||
"lz4": "lz4",
|
||||
"lzop": "lzop",
|
||||
"m4": "m4",
|
||||
"mac2unix": "dos2unix",
|
||||
"magick": "ImageMagick",
|
||||
"mail": "mailx",
|
||||
"mailx": "mailx",
|
||||
"make": "make",
|
||||
"man": "man",
|
||||
"mandb": "man-db",
|
||||
"manpath": "man-db",
|
||||
"mc": "mc",
|
||||
"mcookie": "util-linux",
|
||||
"md5sum": "coreutils",
|
||||
"mdadm": "mdadm",
|
||||
"mesg": "sysvinit-tools",
|
||||
"mingle": "graphviz",
|
||||
"minicom": "minicom",
|
||||
"mkdir": "coreutils",
|
||||
"mke2fs": "e2fsprogs",
|
||||
"mkfifo": "coreutils",
|
||||
"mkfs": "util-linux",
|
||||
"mkfs.btrfs": "btrfs-progs",
|
||||
"mkfs.cramfs": "util-linux",
|
||||
"mkfs.ext4": "e2fsprogs",
|
||||
"mkfs.fat": "dosfstools",
|
||||
"mkfs.minix": "util-linux",
|
||||
"mkfs.vfat": "dosfstools",
|
||||
"mkisofs": "genisoimage",
|
||||
"mklost+found": "e2fsprogs",
|
||||
"mknod": "coreutils",
|
||||
"mkswap": "util-linux",
|
||||
"mktemp": "coreutils",
|
||||
"mm2gv": "graphviz",
|
||||
"modinfo": "kmod",
|
||||
"modprobe": "kmod",
|
||||
"more": "util-linux",
|
||||
"mount": "mount",
|
||||
"mountpoint": "util-linux",
|
||||
"mpd": "mpd",
|
||||
"mpg123": "mpg123",
|
||||
"mpstat": "sysstat",
|
||||
"mt": "mt-st",
|
||||
"mtr": "mtr",
|
||||
"mutt": "mutt",
|
||||
"mv": "coreutils",
|
||||
"mvn": "xmvn-minimal",
|
||||
"mysql": "mysql",
|
||||
"namei": "util-linux",
|
||||
"nano": "nano",
|
||||
"nasm": "nasm",
|
||||
"nautilus": "nautilus",
|
||||
"nc": "nc",
|
||||
"ncat": "nmap-ncat-2",
|
||||
"ndctl": "ndctl",
|
||||
"neato": "graphviz",
|
||||
"netstat": "net-tools",
|
||||
"nft": "nftables",
|
||||
"nice": "coreutils",
|
||||
"nkf": "nkf",
|
||||
"nl": "coreutils",
|
||||
"nm": "binutils",
|
||||
"nmap": "nmap",
|
||||
"nohup": "coreutils",
|
||||
"nologin": "util-linux",
|
||||
"nop": "graphviz",
|
||||
"notify-send": "libnotify",
|
||||
"nproc": "coreutils",
|
||||
"nsenter": "util-linux",
|
||||
"ntpdate": "ntpdate",
|
||||
"ntpq": "ntp",
|
||||
"numactl": "numactl",
|
||||
"numfmt": "coreutils",
|
||||
"objdump": "binutils",
|
||||
"ocaml": "ocaml",
|
||||
"ocamlc": "ocaml",
|
||||
"ocamlfind": "ocaml-findlib",
|
||||
"ocamlopt": "ocaml",
|
||||
"od": "coreutils",
|
||||
"okular": "okular",
|
||||
"openssl": "openssl",
|
||||
"opt": "llvm",
|
||||
"optipng": "optipng",
|
||||
"osage": "graphviz",
|
||||
"pactl": "pulseaudio-utils",
|
||||
"parted": "parted",
|
||||
"partprobe": "parted",
|
||||
"partx": "util-linux",
|
||||
"passwd": "passwd",
|
||||
"paste": "coreutils",
|
||||
"pasuspender": "pulseaudio-utils",
|
||||
"patch": "patch",
|
||||
"patchwork": "graphviz",
|
||||
"pathchk": "coreutils",
|
||||
"pax": "pax",
|
||||
"pdbedit": "samba-common-tools",
|
||||
"pdffonts": "poppler-utils",
|
||||
"pdfimages": "poppler-utils",
|
||||
"pdfinfo": "poppler-utils",
|
||||
"pdfseparate": "poppler-utils",
|
||||
"pdftex": "texlive-pdftex-7",
|
||||
"pdftocairo": "poppler-utils",
|
||||
"pdftoppm": "poppler-utils",
|
||||
"pdftotext": "poppler-utils",
|
||||
"pdfunite": "poppler-utils",
|
||||
"perf": "perf",
|
||||
"perl": "perl-base",
|
||||
"pg_ctl": "postgresql-upgrade",
|
||||
"pg_dump": "postgresql",
|
||||
"pg_dumpall": "postgresql",
|
||||
"pg_restore": "postgresql",
|
||||
"pgbench": "postgresql-contrib",
|
||||
"pgrep": "procps-ng",
|
||||
"phar": "php-cli",
|
||||
"php": "php-cli",
|
||||
"phpdismod": "php-common",
|
||||
"phpenmod": "php-common",
|
||||
"phpize": "php-cli",
|
||||
"phpquery": "php-common",
|
||||
"pic": "groff-base",
|
||||
"pidof": "pidof",
|
||||
"pidstat": "sysstat",
|
||||
"pigz": "pigz",
|
||||
"ping": "iputils",
|
||||
"ping6": "iputils",
|
||||
"pinky": "coreutils",
|
||||
"pkg-config": "pkgconf-pkg-config",
|
||||
"pkill": "procps-ng",
|
||||
"play": "sox",
|
||||
"pmap": "procps-ng",
|
||||
"pngcrush": "pngcrush",
|
||||
"po4a": "po4a",
|
||||
"po4a-gettextize": "po4a",
|
||||