Red Hat Enterprise Linux 8を最小構成でインストールしたのですが、bash-Completionは標準でインストールされていました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
[root@rhel8 ~]# dnf info bash-completion Updating Subscription Management repositories. Name : bash-completion Epoch : 1 Version : 2.7 Release : 5.el8 Arch : noarch Size : 895 k Source : bash-completion-2.7-5.el8.src.rpm Repo : @System From repo : anaconda Summary : Programmable completion for Bash URL : https://github.com/scop/bash-completion License : GPLv2+ Description : bash-completion is a collection of shell functions that take advantage : of the programmable completion feature of bash. [root@rhel8 ~]# rpm -qa | grep bash-completion bash-completion-2.7-5.el8.noarch |
試しにfirewall-cmdを補完してみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
[root@rhel8 ~]# complete | grep firewall-cmd complete -F _firewall_cmd firewall-cmd [root@rhel8 ~]# firewall-cmd --[TAB] --add-forward-port= --list-services --add-icmp-block-inversion --list-source-ports --add-icmp-block= --list-sources --add-interface= --lockdown-off --add-lockdown-whitelist-command= --lockdown-on --add-lockdown-whitelist-context= --panic-off --add-lockdown-whitelist-uid= --panic-on --add-lockdown-whitelist-user= --permanent --add-masquerade --query-forward-port= --add-port= --query-icmp-block-inversion --add-protocol= --query-icmp-block= --add-rich-rule= --query-interface= --add-service= --query-lockdown --add-source-port= --query-lockdown-whitelist-command= --add-source= --query-lockdown-whitelist-context= --change-interface= --query-lockdown-whitelist-uid= --change-source= --query-lockdown-whitelist-user= --change-zone= --query-masquerade --complete-reload --query-panic --direct --query-port= --get-active-zones --query-protocol= --get-default-zone --query-rich-rule= --get-description --query-service= --get-helpers --query-source-port= --get-icmptypes --query-source= --get-ipset-types --reload --get-log-denied --remove-forward-port= --get-services --remove-icmp-block-inversion --get-short --remove-icmp-block= --get-zone-of-interface= --remove-interface= --get-zones --remove-lockdown-whitelist-command= --help --remove-lockdown-whitelist-context= --info-helper= --remove-lockdown-whitelist-uid= --info-icmptype= --remove-lockdown-whitelist-user= --info-ipset= --remove-masquerade --info-service= --remove-port= --info-zone= --remove-protocol= --list-all --remove-rich-rule= --list-all-zones --remove-service= --list-forward-ports --remove-source-port= --list-icmp-blocks --remove-source= --list-interfaces --set-default-zone= --list-lockdown-whitelist-commands --set-description= --list-lockdown-whitelist-contexts --set-log-denied= --list-lockdown-whitelist-uids --set-short= --list-lockdown-whitelist-users --state --More-- |
以下、インストールされていた定義ファイルですがapt-getとかありますね。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 |
[root@rhel8 ~]# ls -la /usr/share/bash-completion/completions/ total 2556 drwxr-xr-x. 2 root root 20480 Aug 23 19:03 . drwxr-xr-x. 4 root root 63 Apr 3 18:13 .. -rw-r--r--. 1 root root 918 Apr 27 2017 2to3 -rw-r--r--. 1 root root 3894 Apr 27 2017 7z lrwxrwxrwx. 1 root root 2 Aug 13 2018 7za -> 7z -rw-r--r--. 1 root root 886 Apr 27 2017 _cal -rw-r--r--. 1 root root 238 Apr 27 2017 _chfn -rw-r--r--. 1 root root 646 Apr 27 2017 _chsh -rw-r--r--. 1 root root 940 Apr 27 2017 _dmesg -rw-r--r--. 1 root root 799 Apr 27 2017 _eject -rw-r--r--. 1 root root 702 Apr 27 2017 _hexdump -rw-r--r--. 1 root root 609 Apr 27 2017 _hwclock -rw-r--r--. 1 root root 1272 Apr 27 2017 _ionice -rw-r--r--. 1 root root 449 Apr 27 2017 _look -rw-r--r--. 1 root root 2081 Apr 27 2017 _mock -rw-r--r--. 1 root root 2548 Apr 27 2017 _modules -rw-r--r--. 1 root root 432 Apr 27 2017 _newgrp -rw-r--r--. 1 root root 6291 Apr 27 2017 _nmcli -rw-r--r--. 1 root root 772 Apr 27 2017 _renice -rw-r--r--. 1 root root 610 Apr 27 2017 _repomanage -rw-r--r--. 1 root root 551 Apr 27 2017 _reptyr -rw-r--r--. 1 root root 937 Aug 13 2018 _rfkill -rw-r--r--. 1 root root 873 Apr 27 2017 _rtcwake -rw-r--r--. 1 root root 241 Apr 27 2017 _runuser -rw-r--r--. 1 root root 989 Apr 27 2017 _su -rw-r--r--. 1 root root 8919 Apr 27 2017 _svn -rw-r--r--. 1 root root 2335 Apr 27 2017 _svnadmin -rw-r--r--. 1 root root 1999 Apr 27 2017 _svnlook -rw-r--r--. 1 root root 2186 Apr 27 2017 _udevadm -rw-r--r--. 1 root root 239 Apr 27 2017 _write -rw-r--r--. 1 root root 4526 Apr 27 2017 _yum -rw-r--r--. 1 root root 898 Apr 27 2017 a2x -rw-r--r--. 1 root root 1219 Apr 27 2017 abook -rw-r--r--. 1 root root 850 Apr 27 2017 aclocal lrwxrwxrwx. 1 root root 7 Aug 13 2018 aclocal-1.10 -> aclocal lrwxrwxrwx. 1 root root 7 Aug 13 2018 aclocal-1.11 -> aclocal lrwxrwxrwx. 1 root root 7 Aug 13 2018 aclocal-1.12 -> aclocal lrwxrwxrwx. 1 root root 7 Aug 13 2018 aclocal-1.13 -> aclocal lrwxrwxrwx. 1 root root 7 Aug 13 2018 aclocal-1.14 -> aclocal lrwxrwxrwx. 1 root root 7 Aug 13 2018 aclocal-1.15 -> aclocal -rw-r--r--. 1 root root 446 Apr 27 2017 acpi -rw-r--r--. 1 root root 1691 Apr 27 2017 adb -rw-r--r--. 1 root root 765 Apr 27 2017 add_members -rw-r--r--. 1 root root 447 Dec 11 2018 addpart -rw-r--r--. 1 root root 489 Apr 27 2017 alias lrwxrwxrwx. 1 root root 4 Aug 13 2018 alpine -> pine lrwxrwxrwx. 1 root root 19 Aug 13 2018 alternatives -> update-alternatives lrwxrwxrwx. 1 root root 7 Aug 13 2018 animate -> convert -rw-r--r--. 1 root root 2584 Apr 27 2017 ant -rw-r--r--. 1 root root 382 Apr 27 2017 apache2ctl -rw-r--r--. 1 root root 796 Apr 27 2017 appdata-validate -rw-r--r--. 1 root root 3326 Oct 16 2018 appstream-util lrwxrwxrwx. 1 root root 3 Aug 13 2018 apropos -> man -rw-r--r--. 1 root root 1468 Apr 27 2017 apt-build -rw-r--r--. 1 root root 2018 Apr 27 2017 apt-cache -rw-r--r--. 1 root root 2585 Apr 27 2017 apt-get -rw-r--r--. 1 root root 3059 Apr 27 2017 aptitude -rw-r--r--. 1 root root 1089 Apr 27 2017 arch lrwxrwxrwx. 1 root root 4 Aug 13 2018 arm-koji -> koji -rw-r--r--. 1 root root 596 Apr 27 2017 arping -rw-r--r--. 1 root root 562 Apr 27 2017 arpspoof -rw-r--r--. 1 root root 1166 Apr 27 2017 asciidoc lrwxrwxrwx. 1 root root 8 Aug 13 2018 asciidoc.py -> asciidoc -rw-r--r--. 1 root root 3390 Apr 27 2017 aspell -rw-r--r--. 1 root root 953 Apr 27 2017 autoconf lrwxrwxrwx. 1 root root 10 Aug 13 2018 autoheader -> autoreconf -rw-r--r--. 1 root root 874 Apr 27 2017 automake lrwxrwxrwx. 1 root root 8 Aug 13 2018 automake-1.10 -> automake lrwxrwxrwx. 1 root root 8 Aug 13 2018 automake-1.11 -> automake lrwxrwxrwx. 1 root root 8 Aug 13 2018 automake-1.12 -> automake lrwxrwxrwx. 1 root root 8 Aug 13 2018 automake-1.13 -> automake lrwxrwxrwx. 1 root root 8 Aug 13 2018 automake-1.14 -> automake lrwxrwxrwx. 1 root root 8 Aug 13 2018 automake-1.15 -> automake -rw-r--r--. 1 root root 1015 Apr 27 2017 autoreconf -rw-r--r--. 1 root root 350 Apr 27 2017 autorpm -rw-r--r--. 1 root root 733 Apr 27 2017 autoscan lrwxrwxrwx. 1 root root 3 Aug 13 2018 autossh -> ssh lrwxrwxrwx. 1 root root 8 Aug 13 2018 autoupdate -> autoscan -rw-r--r--. 1 root root 475 Apr 27 2017 avctrl -rw-r--r--. 1 root root 714 Apr 27 2017 badblocks -rw-r--r--. 1 root root 856 May 9 2017 bind -rw-r--r--. 1 root root 433 Apr 27 2017 bk -rw-r--r--. 1 root root 639 Dec 11 2018 blkdiscard -rw-r--r--. 1 root root 2094 Dec 11 2018 blkid -rw-r--r--. 1 root root 971 Dec 11 2018 blkzone -rw-r--r--. 1 root root 726 Dec 11 2018 blockdev -rw-r--r--. 1 root root 1937 Jun 22 2018 bootctl -rw-r--r--. 1 root root 1049 Apr 27 2017 brctl lrwxrwxrwx. 1 root root 21 Aug 13 2018 btdownloadcurses.py -> btdownloadheadless.py lrwxrwxrwx. 1 root root 21 Aug 13 2018 btdownloadgui.py -> btdownloadheadless.py -rw-r--r--. 1 root root 1060 Apr 27 2017 btdownloadheadless.py -rw-r--r--. 1 root root 4334 Apr 27 2017 bts -rw-r--r--. 1 root root 8015 Jun 22 2018 busctl -rw-r--r--. 1 root root 1084 Apr 27 2017 bzip2 lrwxrwxrwx. 1 root root 3 Aug 13 2018 c++ -> gcc -rw-r--r--. 1 root root 426 Dec 11 2018 cal -rw-r--r--. 1 root root 293 Apr 27 2017 cancel -rw-r--r--. 1 root root 382 Apr 27 2017 cardctl lrwxrwxrwx. 1 root root 3 Aug 13 2018 cc -> gcc -rw-r--r--. 1 root root 1015 Apr 27 2017 ccache lrwxrwxrwx. 1 root root 5 Aug 13 2018 cdrecord -> wodim -rw-r--r--. 1 root root 423 Apr 27 2017 cfagent -rw-r--r--. 1 root root 546 Dec 11 2018 cfdisk -rw-r--r--. 1 root root 1292 Apr 27 2017 cfrun -rw-r--r--. 1 root root 580 Apr 27 2017 chage -rw-r--r--. 1 root root 531 Apr 27 2017 change_pw -rw-r--r--. 1 root root 1510 Dec 11 2018 chcpu -rw-r--r--. 1 root root 376 Apr 27 2017 check_db -rw-r--r--. 1 root root 321 Apr 27 2017 check_perms -rw-r--r--. 1 root root 742 Apr 27 2017 checksec -rw-r--r--. 1 root root 445 Dec 11 2018 chfn -rw-r--r--. 1 root root 951 Apr 27 2017 chgrp -rw-r--r--. 1 root root 909 Apr 27 2017 chkconfig -rw-r--r--. 1 root root 501 Dec 11 2018 chmem -rw-r--r--. 1 root root 1112 Apr 27 2017 chown -rw-r--r--. 1 root root 601 Apr 27 2017 chpasswd -rw-r--r--. 1 root root 1567 Apr 27 2017 chronyc -rw-r--r--. 1 root root 522 Apr 27 2017 chrpath -rw-r--r--. 1 root root 920 Dec 11 2018 chrt -rw-r--r--. 1 root root 504 Dec 11 2018 chsh lrwxrwxrwx. 1 root root 3 Aug 13 2018 ci -> rcs lrwxrwxrwx. 1 root root 7 Aug 13 2018 ciptool -> hcitool lrwxrwxrwx. 1 root root 12 Aug 13 2018 civclient -> freeciv-gtk2 lrwxrwxrwx. 1 root root 14 Aug 13 2018 civserver -> freeciv-server -rw-r--r--. 1 root root 521 Apr 27 2017 cksfv -rw-r--r--. 1 root root 354 Apr 27 2017 cleanarch -rw-r--r--. 1 root root 670 Apr 27 2017 clisp -rw-r--r--. 1 root root 542 Apr 27 2017 clone_member lrwxrwxrwx. 1 root root 4 Aug 13 2018 clzip -> lzip lrwxrwxrwx. 1 root root 3 Aug 13 2018 co -> rcs -rw-r--r--. 1 root root 460 Dec 11 2018 col -rw-r--r--. 1 root root 484 Dec 11 2018 colcrt lrwxrwxrwx. 1 root root 4 Aug 13 2018 colormake -> make -rw-r--r--. 1 root root 509 Dec 11 2018 colrm -rw-r--r--. 1 root root 725 Dec 11 2018 column lrwxrwxrwx. 1 root root 7 Aug 13 2018 compare -> convert lrwxrwxrwx. 1 root root 8 Aug 13 2018 compgen -> complete -rw-r--r--. 1 root root 1478 Apr 27 2017 complete lrwxrwxrwx. 1 root root 7 Aug 13 2018 composite -> convert -rw-r--r--. 1 root root 582 Apr 27 2017 config_list -rw-r--r--. 1 root root 1192 Apr 27 2017 configure lrwxrwxrwx. 1 root root 7 Aug 13 2018 conjure -> convert -rw-r--r--. 1 root root 9109 Apr 27 2017 convert -rw-r--r--. 1 root root 3715 Jun 22 2018 coredumpctl -rw-r--r--. 1 root root 1226 Apr 27 2017 cpan2dist -rw-r--r--. 1 root root 2914 Apr 27 2017 cpio -rw-r--r--. 1 root root 2607 Apr 27 2017 cppcheck lrwxrwxrwx. 1 root root 4 Aug 13 2018 createdb -> psql lrwxrwxrwx. 1 root root 4 Aug 13 2018 createuser -> psql -rw-r--r--. 1 root root 1186 Apr 27 2017 crontab -rw-r--r--. 1 root root 2834 Apr 27 2017 cryptsetup -rw-r--r--. 1 root root 335 Dec 11 2018 ctrlaltdel -rw-r--r--. 1 root root 2974 Apr 27 2017 curl -rw-r--r--. 1 root root 11860 Apr 27 2017 cvs -rw-r--r--. 1 root root 1505 Apr 27 2017 cvsps lrwxrwxrwx. 1 root root 5 Aug 13 2018 dcop -> qdbus -rw-r--r--. 1 root root 1285 Apr 27 2017 dd lrwxrwxrwx. 1 root root 8 Aug 13 2018 declare -> function -rw-r--r--. 1 root root 699 Apr 27 2017 deja-dup -rw-r--r--. 1 root root 526 Dec 11 2018 delpart -rw-r--r--. 1 root root 476 Apr 27 2017 desktop-file-validate lrwxrwxrwx. 1 root root 7 Aug 13 2018 dfutool -> hcitool -rw-r--r--. 1 root root 591 Apr 27 2017 dhclient -rw-r--r--. 1 root root 1875 Apr 27 2017 dict lrwxrwxrwx. 1 root root 7 Aug 13 2018 display -> convert -rw-r--r--. 1 root root 1182 Dec 11 2018 dmesg -rw-r--r--. 1 root root 9690 Jan 4 2019 dnf -rw-r--r--. 1 root root 504 Apr 27 2017 dnsspoof -rw-r--r--. 1 root root 1293 Apr 27 2017 dot -rw-r--r--. 1 root root 3261 Jun 25 2017 dpkg lrwxrwxrwx. 1 root root 4 Aug 13 2018 dpkg-deb -> dpkg lrwxrwxrwx. 1 root root 4 Aug 13 2018 dpkg-query -> dpkg lrwxrwxrwx. 1 root root 4 Aug 13 2018 dpkg-reconfigure -> dpkg -rw-r--r--. 1 root root 3290 Apr 27 2017 dpkg-source -rw-r--r--. 1 root root 3580 Jan 15 2019 dracut lrwxrwxrwx. 1 root root 4 Aug 13 2018 dropdb -> psql lrwxrwxrwx. 1 root root 4 Aug 13 2018 dropuser -> psql -rw-r--r--. 1 root root 666 Apr 27 2017 dselect -rw-r--r--. 1 root root 516 Apr 27 2017 dsniff -rw-r--r--. 1 root root 373 Apr 27 2017 dumpdb -rw-r--r--. 1 root root 520 Apr 27 2017 dumpe2fs -rw-r--r--. 1 root root 462 Apr 27 2017 e2freefrag -rw-r--r--. 1 root root 292 Apr 27 2017 e2label lrwxrwxrwx. 1 root root 5 Aug 13 2018 edquota -> quota -rw-r--r--. 1 root root 1189 Dec 11 2018 eject -rw-r--r--. 1 root root 652 Apr 27 2017 eog -rw-r--r--. 1 root root 531 Apr 27 2017 ether-wake -rw-r--r--. 1 root root 952 Apr 27 2017 evince -rw-r--r--. 1 root root 152 Apr 27 2017 explodepkg -rw-r--r--. 1 root root 1632 Apr 27 2017 export lrwxrwxrwx. 1 root root 3 Aug 13 2018 f77 -> gcc lrwxrwxrwx. 1 root root 3 Aug 13 2018 f95 -> gcc -rw-r--r--. 1 root root 629 Apr 27 2017 faillog -rw-r--r--. 1 root root 721 Dec 11 2018 fallocate -rw-r--r--. 1 root root 1573 Apr 27 2017 fbgs -rw-r--r--. 1 root root 1829 Apr 27 2017 fbi -rw-r--r--. 1 root root 566 Dec 11 2018 fdformat -rw-r--r--. 1 root root 1834 Dec 11 2018 fdisk -rw-r--r--. 1 root root 4146 Apr 27 2017 feh -rw-r--r--. 1 root root 734 Apr 27 2017 file -rw-r--r--. 1 root root 1091 Apr 27 2017 file-roller lrwxrwxrwx. 1 root root 6 Aug 13 2018 filebucket -> puppet -rw-r--r--. 1 root root 354 Apr 27 2017 filefrag -rw-r--r--. 1 root root 451 Apr 27 2017 filesnarf -rw-r--r--. 1 root root 916 Dec 11 2018 fincore -rw-r--r--. 1 root root 3929 Apr 27 2017 find -rw-r--r--. 1 root root 537 Apr 27 2017 find_member -rw-r--r--. 1 root root 695 Dec 11 2018 findfs -rw-r--r--. 1 root root 3154 Dec 11 2018 findmnt -rw-r--r--. 1 root root 10341 Jan 14 2019 firewall-cmd -rw-r--r--. 1 root root 812 Apr 27 2017 flake8 -rw-r--r--. 1 root root 874 Dec 11 2018 flock -rw-r--r--. 1 root root 587 Apr 27 2017 freebsd-update -rw-r--r--. 1 root root 702 Apr 27 2017 freeciv-gtk2 lrwxrwxrwx. 1 root root 12 Aug 13 2018 freeciv-sdl -> freeciv-gtk2 -rw-r--r--. 1 root root 477 Apr 27 2017 freeciv-server lrwxrwxrwx. 1 root root 12 Aug 13 2018 freeciv-xaw -> freeciv-gtk2 -rw-r--r--. 1 root root 787 Dec 11 2018 fsck -rw-r--r--. 1 root root 684 Dec 11 2018 fsck.cramfs -rw-r--r--. 1 root root 383 Dec 11 2018 fsck.minix -rw-r--r--. 1 root root 524 Dec 11 2018 fsfreeze -rw-r--r--. 1 root root 677 Dec 11 2018 fstrim -rw-r--r--. 1 root root 1296 Apr 27 2017 function -rw-r--r--. 1 root root 649 Apr 27 2017 fusermount lrwxrwxrwx. 1 root root 3 Aug 13 2018 g++ -> gcc lrwxrwxrwx. 1 root root 2 Aug 13 2018 g4 -> p4 lrwxrwxrwx. 1 root root 3 Aug 13 2018 g77 -> gcc lrwxrwxrwx. 1 root root 3 Aug 13 2018 g95 -> gcc -rw-r--r--. 1 root root 1389 Jan 10 2018 gapplication -rw-r--r--. 1 root root 2222 Apr 27 2017 gcc lrwxrwxrwx. 1 root root 3 Aug 13 2018 gcj -> gcc -rw-r--r--. 1 root root 617 Apr 27 2017 gcl -rw-r--r--. 1 root root 1653 Apr 27 2017 gdb -rw-r--r--. 1 root root 935 Jan 10 2018 gdbus -rw-r--r--. 1 root root 324 Apr 27 2017 genaliases -rw-r--r--. 1 root root 267 Apr 27 2017 gendiff -rw-r--r--. 1 root root 869 Apr 27 2017 genisoimage -rw-r--r--. 1 root root 1999 Apr 27 2017 getent -rw-r--r--. 1 root root 815 Dec 11 2018 getopt lrwxrwxrwx. 1 root root 3 Aug 13 2018 gfortran -> gcc -rw-r--r--. 1 root root 916 Apr 27 2017 gkrellm lrwxrwxrwx. 1 root root 7 Aug 13 2018 gkrellm2 -> gkrellm -rw-r--r--. 1 root root 858 May 12 2017 gm lrwxrwxrwx. 1 root root 4 Aug 13 2018 gmake -> make lrwxrwxrwx. 1 root root 7 Aug 13 2018 gmplayer -> mplayer -rw-r--r--. 1 root root 1017 Apr 27 2017 gnatmake -rw-r--r--. 1 root root 6976 Apr 27 2017 gnokii -rw-r--r--. 1 root root 962 Apr 27 2017 gnome-mplayer lrwxrwxrwx. 1 root root 4 Aug 13 2018 gnumake -> make -rw-r--r--. 1 root root 605 Apr 27 2017 gpasswd lrwxrwxrwx. 1 root root 3 Aug 13 2018 gpc -> gcc -rw-r--r--. 1 root root 1277 Apr 27 2017 gpg -rw-r--r--. 1 root root 1338 Apr 27 2017 gpg2 -rw-r--r--. 1 root root 1405 Apr 27 2017 gphoto2 -rw-r--r--. 1 root root 1899 Apr 27 2017 gprof -rw-r--r--. 1 root root 611 Apr 27 2017 groupadd -rw-r--r--. 1 root root 121 Apr 27 2017 groupdel -rw-r--r--. 1 root root 611 Apr 27 2017 groupmems -rw-r--r--. 1 root root 686 Apr 27 2017 groupmod -rw-r--r--. 1 root root 896 Apr 27 2017 growisofs -rw-r--r--. 1 root root 345 Apr 27 2017 grpck -rw-r--r--. 1 root root 11681 Dec 19 2018 grub -rw-r--r--. 1 root root 2829 Aug 15 2018 gsettings -rw-r--r--. 1 root root 1180 Apr 27 2017 gzip lrwxrwxrwx. 1 root root 7 Aug 13 2018 hciattach -> hcitool lrwxrwxrwx. 1 root root 7 Aug 13 2018 hciconfig -> hcitool -rw-r--r--. 1 root root 9756 Apr 27 2017 hcitool lrwxrwxrwx. 1 root root 8 Aug 13 2018 hd -> _hexdump -rw-r--r--. 1 root root 866 Apr 27 2017 hddtemp -rw-r--r--. 1 root root 1007 Dec 11 2018 hexdump -rw-r--r--. 1 root root 350 Apr 27 2017 hid2hci lrwxrwxrwx. 1 root root 8 Aug 13 2018 host -> nslookup -rw-r--r--. 1 root root 479 Apr 27 2017 hostname -rw-r--r--. 1 root root 2281 Jun 22 2018 hostnamectl lrwxrwxrwx. 1 root root 6 Aug 13 2018 hping -> hping2 -rw-r--r--. 1 root root 766 Apr 27 2017 hping2 lrwxrwxrwx. 1 root root 6 Aug 13 2018 hping3 -> hping2 -rw-r--r--. 1 root root 797 Apr 27 2017 htop -rw-r--r--. 1 root root 920 Apr 27 2017 htpasswd -rw-r--r--. 1 root root 938 Dec 11 2018 hwclock -rw-r--r--. 1 root root 847 Apr 27 2017 iconv -rw-r--r--. 1 root root 441 Apr 27 2017 id lrwxrwxrwx. 1 root root 7 Aug 13 2018 identify -> convert -rw-r--r--. 1 root root 653 Apr 27 2017 idn lrwxrwxrwx. 1 root root 4 Aug 13 2018 ifdown -> ifup lrwxrwxrwx. 1 root root 4 Aug 13 2018 ifstatus -> ifup -rw-r--r--. 1 root root 508 Apr 27 2017 iftop -rw-r--r--. 1 root root 387 Apr 27 2017 ifup lrwxrwxrwx. 1 root root 7 Aug 13 2018 import -> convert -rw-r--r--. 1 root root 1920 Apr 27 2017 info -rw-r--r--. 1 root root 510 Apr 27 2017 inject -rw-r--r--. 1 root root 521 Apr 27 2017 insmod lrwxrwxrwx. 1 root root 6 Aug 13 2018 insmod.static -> insmod -rw-r--r--. 1 root root 737 Apr 27 2017 installpkg -rw-r--r--. 1 root root 762 Apr 27 2017 interdiff -rw-r--r--. 1 root root 1231 Apr 27 2017 invoke-rc.d -rw-r--r--. 1 root root 1161 Dec 11 2018 ionice -rw-r--r--. 1 root root 10591 Apr 27 2017 ip -rw-r--r--. 1 root root 576 Dec 11 2018 ipcmk -rw-r--r--. 1 root root 1423 Dec 11 2018 ipcrm -rw-r--r--. 1 root root 514 Dec 11 2018 ipcs -rw-r--r--. 1 root root 1725 Apr 27 2017 iperf -rw-r--r--. 1 root root 5867 Apr 27 2017 ipmitool -rw-r--r--. 1 root root 3222 Apr 27 2017 ipsec -rw-r--r--. 1 root root 2287 Apr 27 2017 iptables -rw-r--r--. 1 root root 1383 Apr 27 2017 ipv6calc -rw-r--r--. 1 root root 1907 Apr 27 2017 iscsiadm -rw-r--r--. 1 root root 529 Dec 11 2018 isosize -rw-r--r--. 1 root root 354 Apr 27 2017 isql -rw-r--r--. 1 root root 2841 Apr 27 2017 iwconfig -rw-r--r--. 1 root root 617 Apr 27 2017 iwlist -rw-r--r--. 1 root root 743 Apr 27 2017 iwpriv -rw-r--r--. 1 root root 488 Apr 27 2017 iwspy -rw-r--r--. 1 root root 501 Apr 27 2017 jar -rw-r--r--. 1 root root 1661 Apr 27 2017 jarsigner -rw-r--r--. 1 root root 8609 Apr 27 2017 java lrwxrwxrwx. 1 root root 4 Aug 13 2018 javac -> java lrwxrwxrwx. 1 root root 4 Aug 13 2018 javadoc -> java -rw-r--r--. 1 root root 774 Apr 27 2017 javaws -rw-r--r--. 1 root root 5892 Jun 22 2018 journalctl -rw-r--r--. 1 root root 865 Apr 27 2017 jpegoptim -rw-r--r--. 1 root root 594 Apr 27 2017 jps -rw-r--r--. 1 root root 894 Apr 27 2017 jshint -rw-r--r--. 1 root root 1160 Apr 27 2017 k3b -rw-r--r--. 1 root root 1600 Apr 27 2017 kcov -rw-r--r--. 1 root root 1810 Jun 22 2018 kernel-install -rw-r--r--. 1 root root 579 Apr 27 2017 kill -rw-r--r--. 1 root root 762 Apr 27 2017 killall -rw-r--r--. 1 root root 477 Apr 27 2017 kldload -rw-r--r--. 1 root root 369 Apr 27 2017 kldunload -rw-r--r--. 1 root root 3235 Apr 3 18:13 kmod -rw-r--r--. 1 root root 6365 Apr 27 2017 koji lrwxrwxrwx. 1 root root 7 Aug 13 2018 kplayer -> mplayer -rw-r--r--. 1 root root 3001 Apr 27 2017 ktutil lrwxrwxrwx. 1 root root 7 Aug 13 2018 l2ping -> hcitool -rw-r--r--. 1 root root 1983 Apr 27 2017 larch -rw-r--r--. 1 root root 949 Dec 11 2018 last -rw-r--r--. 1 root root 566 Apr 27 2017 lastlog lrwxrwxrwx. 1 root root 5 Aug 13 2018 lbzip2 -> bzip2 lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldapadd -> ldapsearch lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldapcompare -> ldapsearch lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldapdelete -> ldapsearch lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldapmodify -> ldapsearch lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldapmodrdn -> ldapsearch lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldappasswd -> ldapsearch -rw-r--r--. 1 root root 4475 Apr 27 2017 ldapsearch -rw-r--r--. 1 root root 1386 Apr 27 2017 ldapvi lrwxrwxrwx. 1 root root 10 Aug 13 2018 ldapwhoami -> ldapsearch -rw-r--r--. 1 root root 1472 Dec 11 2018 ldattach -rw-r--r--. 1 root root 634 Apr 27 2017 lftp -rw-r--r--. 1 root root 309 Apr 27 2017 lftpget -rw-r--r--. 1 root root 1194 Apr 27 2017 lilo -rw-r--r--. 1 root root 989 Apr 27 2017 links -rw-r--r--. 1 root root 5259 Apr 27 2017 lintian lrwxrwxrwx. 1 root root 7 Aug 13 2018 lintian-info -> lintian -rw-r--r--. 1 root root 635 Apr 27 2017 lisp -rw-r--r--. 1 root root 387 Apr 27 2017 list_admins -rw-r--r--. 1 root root 471 Apr 27 2017 list_lists -rw-r--r--. 1 root root 858 Apr 27 2017 list_members -rw-r--r--. 1 root root 413 Apr 27 2017 list_owners -rw-r--r--. 1 root root 3739 Jun 22 2018 localectl -rw-r--r--. 1 root root 1553 Dec 11 2018 logger -rw-r--r--. 1 root root 4251 Jun 22 2018 loginctl -rw-r--r--. 1 root root 683 Dec 11 2018 look -rw-r--r--. 1 root root 1721 Dec 11 2018 losetup -rw-r--r--. 1 root root 602 Apr 27 2017 lpq -rw-r--r--. 1 root root 914 Apr 27 2017 lpr -rw-r--r--. 1 root root 1131 Apr 27 2017 lrzip -rw-r--r--. 1 root root 1961 Dec 11 2018 lsblk -rw-r--r--. 1 root root 1018 Dec 11 2018 lscpu -rw-r--r--. 1 root root 1983 Jan 15 2019 lsinitrd -rw-r--r--. 1 root root 1310 Dec 11 2018 lsipc -rw-r--r--. 1 root root 1069 Dec 11 2018 lslocks -rw-r--r--. 1 root root 1704 Dec 11 2018 lslogins -rw-r--r--. 1 root root 18987 Sep 25 2018 lsmcli -rw-r--r--. 1 root root 1054 Dec 11 2018 lsmem -rw-r--r--. 1 root root 1167 Dec 11 2018 lsns -rw-r--r--. 1 root root 1393 Apr 27 2017 lsof -rw-r--r--. 1 root root 434 Apr 27 2017 lua -rw-r--r--. 1 root root 486 Apr 27 2017 luac -rw-r--r--. 1 root root 999 Apr 27 2017 luseradd -rw-r--r--. 1 root root 474 Apr 27 2017 luserdel lrwxrwxrwx. 1 root root 8 Aug 13 2018 lusermod -> luseradd lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvchange -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvcreate -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvdisplay -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvextend -> lvm -rw-r--r--. 1 root root 19978 Apr 27 2017 lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvmdiskscan -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvreduce -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvremove -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvrename -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvresize -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvs -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 lvscan -> lvm -rw-r--r--. 1 root root 1211 Apr 27 2017 lz4 lrwxrwxrwx. 1 root root 3 Aug 13 2018 lz4c -> lz4 -rw-r--r--. 1 root root 1146 Apr 27 2017 lzip -rw-r--r--. 1 root root 1032 Apr 27 2017 lzma -rw-r--r--. 1 root root 1486 Apr 27 2017 lzop -rw-r--r--. 1 root root 429 Apr 27 2017 macof -rw-r--r--. 1 root root 469 Apr 27 2017 mailmanctl lrwxrwxrwx. 1 root root 9 Aug 13 2018 mailsnarf -> filesnarf -rw-r--r--. 1 root root 6216 Apr 27 2017 make -rw-r--r--. 1 root root 534 Apr 27 2017 makepkg -rw-r--r--. 1 root root 2727 Aug 13 2018 man -rw-r--r--. 1 root root 842 Apr 27 2017 mc -rw-r--r--. 1 root root 599 Dec 11 2018 mcookie -rw-r--r--. 1 root root 1850 Apr 27 2017 mcrypt -rw-r--r--. 1 root root 4492 Apr 27 2017 mdadm lrwxrwxrwx. 1 root root 6 Aug 13 2018 mdecrypt -> mcrypt -rw-r--r--. 1 root root 2127 Apr 27 2017 mdtool -rw-r--r--. 1 root root 682 Apr 27 2017 medusa lrwxrwxrwx. 1 root root 7 Aug 13 2018 mencoder -> mplayer -rw-r--r--. 1 root root 412 Dec 11 2018 mesg lrwxrwxrwx. 1 root root 6 Aug 13 2018 micropython -> python -rw-r--r--. 1 root root 657 Apr 27 2017 mii-diag -rw-r--r--. 1 root root 847 Apr 27 2017 mii-tool -rw-r--r--. 1 root root 1005 Apr 27 2017 minicom -rw-r--r--. 1 root root 638 Dec 11 2018 mkfs -rw-r--r--. 1 root root 821 Dec 11 2018 mkfs.cramfs -rw-r--r--. 1 root root 714 Dec 11 2018 mkfs.minix -rw-r--r--. 1 root root 1221 Apr 27 2017 mkinitrd lrwxrwxrwx. 1 root root 11 Aug 13 2018 mkisofs -> genisoimage -rw-r--r--. 1 root root 841 Dec 11 2018 mkswap -rw-r--r--. 1 root root 669 Apr 27 2017 mktemp -rw-r--r--. 1 root root 330 Apr 27 2017 mmsitepass -rw-r--r--. 1 root root 1100 Apr 27 2017 modinfo -rw-r--r--. 1 root root 3433 Apr 27 2017 modprobe lrwxrwxrwx. 1 root root 7 Aug 13 2018 mogrify -> convert -rw-r--r--. 1 root root 446 Apr 27 2017 monodevelop lrwxrwxrwx. 1 root root 7 Aug 13 2018 montage -> convert -rw-r--r--. 1 root root 528 Dec 11 2018 more -rw-r--r--. 1 root root 1966 Apr 27 2017 mount -rw-r--r--. 1 root root 10613 Apr 27 2017 mount.linux -rw-r--r--. 1 root root 487 Dec 11 2018 mountpoint -rw-r--r--. 1 root root 11358 May 12 2017 mplayer lrwxrwxrwx. 1 root root 7 Aug 13 2018 mplayer2 -> mplayer -rw-r--r--. 1 root root 2521 Apr 27 2017 mr lrwxrwxrwx. 1 root root 9 Aug 13 2018 msgsnarf -> filesnarf -rw-r--r--. 1 root root 1357 Apr 27 2017 msynctool -rw-r--r--. 1 root root 1924 Jun 2 2017 mtr -rw-r--r--. 1 root root 1186 Apr 27 2017 mtx -rw-r--r--. 1 root root 755 Apr 27 2017 munin-node-configure -rw-r--r--. 1 root root 651 Apr 27 2017 munin-run -rw-r--r--. 1 root root 651 Apr 27 2017 munin-update -rw-r--r--. 1 root root 322 Apr 27 2017 munindoc -rw-r--r--. 1 root root 1188 Apr 27 2017 mussh -rw-r--r--. 1 root root 4330 Apr 27 2017 mutt lrwxrwxrwx. 1 root root 4 Aug 13 2018 muttng -> mutt -rw-r--r--. 1 root root 2532 Apr 27 2017 mysql -rw-r--r--. 1 root root 1585 Apr 27 2017 mysqladmin -rw-r--r--. 1 root root 500 Dec 11 2018 namei -rw-r--r--. 1 root root 1095 Apr 27 2017 nc lrwxrwxrwx. 1 root root 4 Aug 13 2018 ncal -> _cal -rw-r--r--. 1 root root 629 Apr 27 2017 ncftp -rw-r--r--. 1 root root 564 Apr 27 2017 nethogs -rw-r--r--. 1 root root 575 Apr 27 2017 newlist -rw-r--r--. 1 root root 677 Apr 27 2017 newusers -rw-r--r--. 1 root root 779 Apr 27 2017 ngrep -rw-r--r--. 1 root root 1848 Apr 27 2017 nmap -rw-r--r--. 1 root root 3834 Feb 8 2019 nmcli -rw-r--r--. 1 root root 1171 Dec 11 2018 nsenter -rw-r--r--. 1 root root 2016 Apr 27 2017 nslookup -rw-r--r--. 1 root root 720 Apr 27 2017 ntpdate -rw-r--r--. 1 root root 10327 May 26 2017 openssl -rw-r--r--. 1 root root 1392 Apr 27 2017 opera -rw-r--r--. 1 root root 1190 Apr 27 2017 optipng -rw-r--r--. 1 root root 1481 Apr 27 2017 p4 -rw-r--r--. 1 root root 2222 Apr 27 2017 pack200 -rw-r--r--. 1 root root 1249 Dec 11 2018 partx -rw-r--r--. 1 root root 497 Apr 27 2017 passwd -rw-r--r--. 1 root root 1754 Apr 27 2017 patch lrwxrwxrwx. 1 root root 5 Aug 13 2018 pbzip2 -> bzip2 lrwxrwxrwx. 1 root root 7 Aug 13 2018 pccardctl -> cardctl -rw-r--r--. 1 root root 932 Apr 27 2017 pdftotext lrwxrwxrwx. 1 root root 4 Aug 13 2018 pdlzip -> lzip -rw-r--r--. 1 root root 3513 Jun 1 2017 perl lrwxrwxrwx. 1 root root 4 Aug 13 2018 perldoc -> perl -rw-r--r--. 1 root root 1211 Apr 27 2017 pgrep lrwxrwxrwx. 1 root root 3 Aug 13 2018 phing -> ant -rw-r--r--. 1 root root 510 Apr 27 2017 pidof lrwxrwxrwx. 1 root root 4 Aug 13 2018 pigz -> gzip -rw-r--r--. 1 root root 881 Apr 27 2017 pine lrwxrwxrwx. 1 root root 4 Aug 13 2018 pinfo -> info -rw-r--r--. 1 root root 1834 Apr 27 2017 ping lrwxrwxrwx. 1 root root 4 Aug 13 2018 ping6 -> ping -rw-r--r--. 1 root root 272 Dec 14 2018 pip3 lrwxrwxrwx. 1 root root 7 Dec 14 2018 pip3.6 -> pip-3.6 -rw-r--r--. 1 root root 387 Dec 11 2018 pivot_root -rw-r--r--. 1 root root 2737 Dec 18 2018 pkcon -rw-r--r--. 1 root root 1304 Apr 27 2017 pkg-config -rw-r--r--. 1 root root 2142 Apr 27 2017 pkg-get lrwxrwxrwx. 1 root root 10 Aug 13 2018 pkg_deinstall -> pkg_delete -rw-r--r--. 1 root root 502 Apr 27 2017 pkg_delete lrwxrwxrwx. 1 root root 10 Aug 13 2018 pkg_info -> pkg_delete -rw-r--r--. 1 root root 1742 Apr 27 2017 pkgadd -rw-r--r--. 1 root root 1071 Apr 27 2017 pkgrm -rw-r--r--. 1 root root 850 Apr 27 2017 pkgtool -rw-r--r--. 1 root root 4014 Apr 27 2017 pkgutil lrwxrwxrwx. 1 root root 5 Aug 13 2018 pkill -> pgrep -rw-r--r--. 1 root root 415 Apr 27 2017 plague-client lrwxrwxrwx. 1 root root 4 Aug 13 2018 plzip -> lzip -rw-r--r--. 1 root root 323 Apr 27 2017 pm-hibernate -rw-r--r--. 1 root root 336 Apr 27 2017 pm-is-supported -rw-r--r--. 1 root root 282 Apr 27 2017 pm-powersave lrwxrwxrwx. 1 root root 12 Aug 13 2018 pm-suspend -> pm-hibernate lrwxrwxrwx. 1 root root 12 Aug 13 2018 pm-suspend-hybrid -> pm-hibernate lrwxrwxrwx. 1 root root 4 Aug 13 2018 pmake -> make -rw-r--r--. 1 root root 799 Apr 27 2017 pngfix -rw-r--r--. 1 root root 3986 Jun 22 2018 portablectl -rw-r--r--. 1 root root 915 Apr 27 2017 portinstall -rw-r--r--. 1 root root 493 Apr 27 2017 portsnap -rw-r--r--. 1 root root 479 Apr 27 2017 portupgrade lrwxrwxrwx. 1 root root 7 Aug 13 2018 postalias -> postmap -rw-r--r--. 1 root root 933 Apr 27 2017 postcat -rw-r--r--. 1 root root 850 Apr 27 2017 postconf -rw-r--r--. 1 root root 675 Apr 27 2017 postfix -rw-r--r--. 1 root root 1009 Apr 27 2017 postmap -rw-r--r--. 1 root root 1748 Apr 27 2017 postsuper -rw-r--r--. 1 root root 1984 Apr 27 2017 povray lrwxrwxrwx. 1 root root 4 Aug 13 2018 ppc-koji -> koji -rw-r--r--. 1 root root 915 Apr 27 2017 prelink -rw-r--r--. 1 root root 1329 Dec 11 2018 prlimit -rw-r--r--. 1 root root 1529 Apr 27 2017 protoc -rw-r--r--. 1 root root 4612 Apr 27 2017 psql -rw-r--r--. 1 root root 9775 Apr 27 2017 puppet lrwxrwxrwx. 1 root root 6 Aug 13 2018 puppetca -> puppet lrwxrwxrwx. 1 root root 6 Aug 13 2018 puppetd -> puppet lrwxrwxrwx. 1 root root 6 Aug 13 2018 puppetdoc -> puppet lrwxrwxrwx. 1 root root 6 Aug 13 2018 puppetmasterd -> puppet lrwxrwxrwx. 1 root root 6 Aug 13 2018 puppetqd -> puppet lrwxrwxrwx. 1 root root 6 Aug 13 2018 puppetrun -> puppet lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvchange -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvcreate -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvdisplay -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvmove -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvremove -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvs -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 pvscan -> lvm -rw-r--r--. 1 root root 342 Apr 27 2017 pwck -rw-r--r--. 1 root root 453 Apr 27 2017 pwd -rw-r--r--. 1 root root 485 Apr 27 2017 pwdx -rw-r--r--. 1 root root 586 Apr 27 2017 pwgen lrwxrwxrwx. 1 root root 2 Aug 13 2018 pxz -> xz -rw-r--r--. 1 root root 1781 May 5 2017 py.test lrwxrwxrwx. 1 root root 7 Aug 13 2018 py.test-2 -> py.test lrwxrwxrwx. 1 root root 7 Aug 13 2018 py.test-3 -> py.test -rw-r--r--. 1 root root 989 Apr 27 2017 pydoc lrwxrwxrwx. 1 root root 5 Aug 13 2018 pydoc3 -> pydoc -rw-r--r--. 1 root root 445 Apr 27 2017 pyflakes -rw-r--r--. 1 root root 2394 Apr 27 2017 pylint lrwxrwxrwx. 1 root root 6 Aug 13 2018 pypy -> python lrwxrwxrwx. 1 root root 6 Aug 13 2018 pypy3 -> python -rw-r--r--. 1 root root 1674 Jun 1 2017 python lrwxrwxrwx. 1 root root 6 Aug 13 2018 python2 -> python lrwxrwxrwx. 1 root root 6 Aug 13 2018 python3 -> python -rw-r--r--. 1 root root 428 Apr 27 2017 pyvenv lrwxrwxrwx. 1 root root 6 Aug 13 2018 pyvenv-3.4 -> pyvenv lrwxrwxrwx. 1 root root 6 Aug 13 2018 pyvenv-3.5 -> pyvenv -rw-r--r--. 1 root root 383 Apr 27 2017 qdbus -rw-r--r--. 1 root root 3357 Apr 27 2017 qemu lrwxrwxrwx. 1 root root 4 Aug 13 2018 qemu-kvm -> qemu lrwxrwxrwx. 1 root root 4 Aug 13 2018 qemu-system-i386 -> qemu lrwxrwxrwx. 1 root root 4 Aug 13 2018 qemu-system-x86_64 -> qemu -rw-r--r--. 1 root root 393 Apr 27 2017 qrunner -rw-r--r--. 1 root root 1088 Apr 27 2017 querybts -rw-r--r--. 1 root root 3710 Apr 27 2017 quota lrwxrwxrwx. 1 root root 5 Aug 13 2018 quotacheck -> quota lrwxrwxrwx. 1 root root 5 Aug 13 2018 quotaoff -> quota lrwxrwxrwx. 1 root root 5 Aug 13 2018 quotaon -> quota lrwxrwxrwx. 1 root root 6 Aug 13 2018 ralsh -> puppet -rw-r--r--. 1 root root 482 Dec 11 2018 raw -rw-r--r--. 1 root root 893 Apr 27 2017 rcs lrwxrwxrwx. 1 root root 3 Aug 13 2018 rcsdiff -> rcs -rw-r--r--. 1 root root 1699 Apr 27 2017 rdesktop lrwxrwxrwx. 1 root root 4 Aug 13 2018 rdict -> dict -rw-r--r--. 1 root root 679 Dec 11 2018 readprofile -rw-r--r--. 1 root root 571 Apr 27 2017 remove_members -rw-r--r--. 1 root root 555 Apr 27 2017 removepkg -rw-r--r--. 1 root root 655 Dec 11 2018 rename -rw-r--r--. 1 root root 784 Dec 11 2018 renice -rw-r--r--. 1 root root 3215 Apr 27 2017 reportbug lrwxrwxrwx. 1 root root 5 Aug 13 2018 repquota -> quota -rw-r--r--. 1 root root 568 Dec 11 2018 resizepart -rw-r--r--. 1 root root 428 Apr 27 2017 resolvconf -rw-r--r--. 1 root root 7066 Jun 22 2018 resolvectl -rw-r--r--. 1 root root 432 Dec 11 2018 rev lrwxrwxrwx. 1 root root 7 Aug 13 2018 rfcomm -> hcitool -rw-r--r--. 1 root root 929 Dec 11 2018 rfkill -rw-r--r--. 1 root root 3733 Apr 29 2017 ri lrwxrwxrwx. 1 root root 3 Aug 13 2018 rlog -> rcs -rw-r--r--. 1 root root 365 Apr 27 2017 rmlist -rw-r--r--. 1 root root 523 Apr 27 2017 rmmod -rw-r--r--. 1 root root 792 Apr 27 2017 route -rw-r--r--. 1 root root 1002 Apr 27 2017 rpcdebug -rw-r--r--. 1 root root 10339 Apr 27 2017 rpm lrwxrwxrwx. 1 root root 7 Aug 13 2018 rpm2targz -> rpm2tgz -rw-r--r--. 1 root root 370 Apr 27 2017 rpm2tgz lrwxrwxrwx. 1 root root 7 Aug 13 2018 rpm2txz -> rpm2tgz lrwxrwxrwx. 1 root root 3 Aug 13 2018 rpmbuild -> rpm lrwxrwxrwx. 1 root root 3 Aug 13 2018 rpmbuild-md5 -> rpm -rw-r--r--. 1 root root 514 Apr 27 2017 rpmcheck -rw-r--r--. 1 root root 440 Apr 27 2017 rrdtool -rw-r--r--. 1 root root 3513 Apr 27 2017 rsync -rw-r--r--. 1 root root 1081 Dec 11 2018 rtcwake lrwxrwxrwx. 1 root root 2 Dec 11 2018 runuser -> su lrwxrwxrwx. 1 root root 4 Aug 13 2018 s390-koji -> koji -rw-r--r--. 1 root root 677 Apr 27 2017 sbcl lrwxrwxrwx. 1 root root 4 Aug 13 2018 sbcl-mt -> sbcl -rw-r--r--. 1 root root 1765 Apr 27 2017 sbopkg lrwxrwxrwx. 1 root root 3 Aug 13 2018 scp -> ssh -rw-r--r--. 1 root root 2257 Apr 27 2017 screen -rw-r--r--. 1 root root 667 Dec 11 2018 script -rw-r--r--. 1 root root 625 Dec 11 2018 scriptreplay lrwxrwxrwx. 1 root root 7 Aug 13 2018 sdptool -> hcitool -rw-r--r--. 1 root root 6570 Dec 14 2018 semanage -rw-r--r--. 1 root root 790 Dec 11 2018 setarch -rw-r--r--. 1 root root 2370 Dec 11 2018 setpriv lrwxrwxrwx. 1 root root 5 Aug 13 2018 setquota -> quota -rw-r--r--. 1 root root 1816 Dec 14 2018 setsebool -rw-r--r--. 1 root root 440 Dec 11 2018 setsid -rw-r--r--. 1 root root 2591 Dec 11 2018 setterm -rw-r--r--. 1 root root 2012 Dec 11 2018 sfdisk lrwxrwxrwx. 1 root root 3 Aug 13 2018 sftp -> ssh -rw-r--r--. 1 root root 874 Apr 27 2017 sh lrwxrwxrwx. 1 root root 3 Aug 13 2018 sidedoor -> ssh -rw-r--r--. 1 root root 1319 Apr 27 2017 sitecopy -rw-r--r--. 1 root root 3420 Apr 27 2017 slackpkg -rw-r--r--. 1 root root 2431 Apr 27 2017 slapt-get -rw-r--r--. 1 root root 1894 Apr 27 2017 slapt-src lrwxrwxrwx. 1 root root 3 Aug 13 2018 slogin -> ssh -rw-r--r--. 1 root root 4575 Apr 27 2017 smartctl lrwxrwxrwx. 1 root root 9 Aug 13 2018 smbcacls -> smbclient -rw-r--r--. 1 root root 7132 Apr 27 2017 smbclient lrwxrwxrwx. 1 root root 9 Aug 13 2018 smbcquotas -> smbclient lrwxrwxrwx. 1 root root 9 Aug 13 2018 smbget -> smbclient lrwxrwxrwx. 1 root root 9 Aug 13 2018 smbpasswd -> smbclient lrwxrwxrwx. 1 root root 9 Aug 13 2018 smbtar -> smbclient lrwxrwxrwx. 1 root root 9 Aug 13 2018 smbtree -> smbclient -rw-r--r--. 1 root root 367 Apr 27 2017 snownews lrwxrwxrwx. 1 root root 4 Aug 13 2018 sparc-koji -> koji lrwxrwxrwx. 1 root root 6 Aug 13 2018 spovray -> povray -rw-r--r--. 1 root root 599 Apr 27 2017 sqlite3 -rw-r--r--. 1 root root 1038 Apr 27 2017 ss -rw-r--r--. 1 root root 11817 Apr 27 2017 ssh -rw-r--r--. 1 root root 434 Apr 27 2017 ssh-add -rw-r--r--. 1 root root 485 Apr 27 2017 ssh-copy-id -rw-r--r--. 1 root root 1548 Apr 27 2017 ssh-keygen -rw-r--r--. 1 root root 591 Apr 27 2017 sshfs -rw-r--r--. 1 root root 365 Apr 27 2017 sshmitm -rw-r--r--. 1 root root 428 Apr 27 2017 sshow -rw-r--r--. 1 root root 3449 Apr 27 2017 strace lrwxrwxrwx. 1 root root 7 Aug 13 2018 stream -> convert -rw-r--r--. 1 root root 1126 Apr 27 2017 strings -rw-r--r--. 1 root root 864 Dec 11 2018 su -rw-r--r--. 1 root root 1306 Apr 27 2017 sudo lrwxrwxrwx. 1 root root 4 Aug 13 2018 sudoedit -> sudo -rw-r--r--. 1 root root 5066 Apr 27 2017 svcadm -rw-r--r--. 1 root root 8870 Apr 27 2017 svk -rw-r--r--. 1 root root 635 Dec 11 2018 swaplabel -rw-r--r--. 1 root root 743 Dec 11 2018 swapoff -rw-r--r--. 1 root root 1529 Dec 11 2018 swapon -rw-r--r--. 1 root root 734 Apr 27 2017 sync_members -rw-r--r--. 1 root root 602 Apr 27 2017 synclient -rw-r--r--. 1 root root 4133 Apr 27 2017 sysbench -rw-r--r--. 1 root root 804 Apr 27 2017 sysctl -rw-r--r--. 1 root root 13456 May 2 14:16 systemctl -rw-r--r--. 1 root root 6044 Jun 22 2018 systemd-analyze -rw-r--r--. 1 root root 1911 Jun 22 2018 systemd-cat -rw-r--r--. 1 root root 2344 Jun 22 2018 systemd-cgls -rw-r--r--. 1 root root 2096 Jun 22 2018 systemd-cgtop -rw-r--r--. 1 root root 1951 Jun 22 2018 systemd-delta -rw-r--r--. 1 root root 1361 Jun 22 2018 systemd-detect-virt -rw-r--r--. 1 root root 1901 Jun 22 2018 systemd-path -rw-r--r--. 1 root root 3189 Jun 22 2018 systemd-resolve -rw-r--r--. 1 root root 4869 Jun 22 2018 systemd-run -rw-r--r--. 1 root root 19248 Jun 25 2017 tar -rw-r--r--. 1 root root 1207 Dec 11 2018 taskset -rw-r--r--. 1 root root 1011 Apr 27 2017 tcpdump -rw-r--r--. 1 root root 441 Apr 27 2017 tcpkill -rw-r--r--. 1 root root 434 Apr 27 2017 tcpnice lrwxrwxrwx. 1 root root 9 Aug 13 2018 tightvncviewer -> vncviewer -rw-r--r--. 1 root root 2984 Jun 22 2018 timedatectl -rw-r--r--. 1 root root 932 Apr 27 2017 timeout -rw-r--r--. 1 root root 7327 Apr 27 2017 tipc -rw-r--r--. 1 root root 456 Apr 27 2017 tracepath lrwxrwxrwx. 1 root root 9 Aug 13 2018 tracepath6 -> tracepath -rw-r--r--. 1 root root 3025 Apr 27 2017 tshark -rw-r--r--. 1 root root 1650 Apr 27 2017 tune2fs -rw-r--r--. 1 root root 511 Jul 4 2018 tuned-adm lrwxrwxrwx. 1 root root 8 Aug 13 2018 typeset -> function -rw-r--r--. 1 root root 3766 Jun 22 2018 udevadm -rw-r--r--. 1 root root 655 Dec 11 2018 ul -rw-r--r--. 1 root root 512 Apr 27 2017 umount -rw-r--r--. 1 root root 4472 Apr 27 2017 umount.linux -rw-r--r--. 1 root root 480 Apr 27 2017 unace -rw-r--r--. 1 root root 1251 Apr 27 2017 unpack200 -rw-r--r--. 1 root root 614 Apr 27 2017 unrar -rw-r--r--. 1 root root 809 Dec 11 2018 unshare -rw-r--r--. 1 root root 351 Apr 27 2017 unshunt -rw-r--r--. 1 root root 2531 Apr 27 2017 update-alternatives -rw-r--r--. 1 root root 2178 Apr 27 2017 update-rc.d -rw-r--r--. 1 root root 811 Apr 27 2017 upgradepkg -rw-r--r--. 1 root root 437 Apr 27 2017 urlsnarf -rw-r--r--. 1 root root 1182 Apr 27 2017 useradd -rw-r--r--. 1 root root 539 Apr 27 2017 userdel -rw-r--r--. 1 root root 1300 Apr 27 2017 usermod -rw-r--r--. 1 root root 475 Dec 11 2018 utmpdump -rw-r--r--. 1 root root 657 Dec 11 2018 uuidgen -rw-r--r--. 1 root root 727 Dec 11 2018 uuidparse -rw-r--r--. 1 root root 3503 Apr 27 2017 valgrind lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgcfgbackup -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgcfgrestore -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgchange -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgck -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgconvert -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgcreate -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgdisplay -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgexport -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgextend -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgimport -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgmerge -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgmknodes -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgreduce -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgremove -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgrename -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgs -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgscan -> lvm lrwxrwxrwx. 1 root root 3 Aug 13 2018 vgsplit -> lvm lrwxrwxrwx. 1 root root 4 Aug 13 2018 vigr -> vipw -rw-r--r--. 1 root root 432 Apr 27 2017 vipw -rw-r--r--. 1 root root 708 Apr 27 2017 vmstat -rw-r--r--. 1 root root 3164 Apr 27 2017 vncviewer -rw-r--r--. 1 root root 1687 Apr 27 2017 vpnc -rw-r--r--. 1 root root 634 Dec 11 2018 wall -rw-r--r--. 1 root root 1161 Apr 27 2017 watch -rw-r--r--. 1 root root 1371 Dec 11 2018 wdctl -rw-r--r--. 1 root root 365 Apr 27 2017 webmitm -rw-r--r--. 1 root root 6628 Apr 27 2017 wget lrwxrwxrwx. 1 root root 3 Aug 13 2018 whatis -> man -rw-r--r--. 1 root root 535 Dec 11 2018 whereis -rw-r--r--. 1 root root 509 Apr 27 2017 wine -rw-r--r--. 1 root root 1192 Dec 11 2018 wipefs -rw-r--r--. 1 root root 413 Apr 27 2017 withlist -rw-r--r--. 1 root root 3624 Apr 27 2017 wodim -rw-r--r--. 1 root root 1132 Apr 27 2017 wol -rw-r--r--. 1 root root 431 Dec 11 2018 write -rw-r--r--. 1 root root 1130 Apr 27 2017 wsimport -rw-r--r--. 1 root root 928 Apr 27 2017 wtf -rw-r--r--. 1 root root 1275 Apr 27 2017 wvdial -rw-r--r--. 1 root root 1073 Apr 27 2017 xfreerdp -rw-r--r--. 1 root root 2055 Apr 27 2017 xgamma -rw-r--r--. 1 root root 367 Apr 27 2017 xhost -rw-r--r--. 1 root root 7591 Apr 27 2017 xm -rw-r--r--. 1 root root 1065 Apr 27 2017 xmllint -rw-r--r--. 1 root root 699 Apr 27 2017 xmlwf -rw-r--r--. 1 root root 663 Apr 27 2017 xmms -rw-r--r--. 1 root root 486 Apr 27 2017 xmodmap lrwxrwxrwx. 1 root root 6 Aug 13 2018 xpovray -> povray -rw-r--r--. 1 root root 2187 Apr 27 2017 xrandr -rw-r--r--. 1 root root 510 Apr 27 2017 xrdb -rw-r--r--. 1 root root 1248 Apr 27 2017 xsltproc lrwxrwxrwx. 1 root root 9 Aug 13 2018 xvnc4viewer -> vncviewer -rw-r--r--. 1 root root 471 Apr 27 2017 xxd -rw-r--r--. 1 root root 1593 Apr 27 2017 xz -rw-r--r--. 1 root root 739 Apr 27 2017 xzdec lrwxrwxrwx. 1 root root 7 Aug 13 2018 ypcat -> ypmatch -rw-r--r--. 1 root root 768 Apr 27 2017 ypmatch -rw-r--r--. 1 root root 360 Apr 27 2017 yum-arch -rw-r--r--. 1 root root 689 Apr 27 2017 zopfli -rw-r--r--. 1 root root 930 Apr 27 2017 zopflipng -rw-r--r--. 1 root root 1273 Dec 11 2018 zramctl |