Bash-completion with pacman [split]

lessthanjake wrote:Install extra/bash-completion and you get bashcompletion for pacman -S.
How does it work? i have installed it but pacman -S gnome-pane does not give gnome-panel

_Gandalf_ wrote:I know why now, Actually i'm trying to do as regular user, as root it works fine, i can't do it even with prefixing it with sudo since the auto completion has not entered the sudo envirement yet (no Enter pressed)
Well on my desktop I don't need to be root (and I don't see the point to be root if you are just looking for a package with -Ss)
Edit: The update of bash-completion seemed to fix everything

Similar Messages

  • Zsh completion with pacman 3.5

    Hi.
    Does zsh completion work for you with pacman 3.5 for -S?
    Bash completion works as intended:
    [chris@chriseee ~]$ sudo pacman -S fire
    firefox firefox-adblock-plus firefox-i18n firefox-noscript firefox-spell-ru firehol
    However, with zsh it is broken:
    ~ % sudo pacman -S fire core/
    No matches for: `arguments', `package', `packages', `repository/package', or `file'
    and it "corrects" fire to core/
    With -Q it works with zsh too:
    ~ % pacman -Q firefox :(
    completing package
    firefox firefox-i18n

    Oh well, thank you.

  • [SOLVED] Slight issue concerning pacman & bash completion

    Hi all,
    I've come across a small issue when using the -Rs option with pacman.
    The auto completion doesn't appear to be working for the first package name passed after the -Rs option.
    For example, when issuing the command
    pacman -Rs firefox
    and pressing tab twice, it will not show any options or auto-complete. However, if I add another package to be removed:
    pacman -Rs firefox chr
    and hit the tab key twice, autocomplete will work, and it'll autocomplete to chromium.
    Bash-completion (2.0-3) is installed, and the rest of the system is up to date. Am I missing something here, or have I stumbled upon a bug?

    I don't know so much about it, but I'm under the impression that bash-completion for pacman (once enabled in ~/.bashrc by adding "complete -cf pacman") works by default by checking the user's PATH variable, i.e. it will offer to complete pacman commands with the name of any executable in the user's PATH's () as well as the contents of the current directory. ... which means: if firefox isn't installed, it won't find it; if it is, it will offer this completion; if there's a file called firefox in the current directory, it will also offer it.
    but as I said, I'm not an expert on bash-completion

  • Tab completion in pacman?

    Hi, new Arch user here, just switch from Debian.
    I'm just wondering whether pacman has tab completion, so if I type pacman -S firef<tab> it'll complete as firefox. It was just a feature I found  convenient.
    Anyhow, Arch looks to be a fun adventure.

    Tab completion with pacman will work out of the box with zsh, for bash you will need to install the package 'bash-completion'.

  • Bash completion of alias

    I have the following lines in my .bashrc:
    alias y='yaourt'
    alias yq='y -Q'
    complete -o filenames -F _yaourt y
    This allows me to do bash completion with just 'y -Q' or 'y' followed by any argument. However, I'm trying to get completion to work when I type in 'yq'. I was wondering if there was a way to send the argument '-Q' to the yaourt completion? Or would I need to write a separate wrapper function?

    Yes, but it doesn't work. The problem is that yaourt by itself has no tab completion. It requires arguments so that it knows what type of completion it is: ie. installed vs not installed programs. I would prefer to get it to work in bash, but if not, I'll take a look at zsh.

  • Bash-completion upgrade conflicts with pacman

    pacman warned me that /usr/share/bash-completion/completions/makepkg would be overwritten.
    pacman -Oo said then that it's part of bash-completion 1.99-1, but there's already bash-completion 1.99-2 that hasn't any more included that file cause now as it seems, the file move into the new pacman package.
    https://projects.archlinux.org/svntogit … 50dbc12ba0
    So following process to not corrupt anything:
    1) Move the file out of the way:
    # mv /usr/share/bash-completion/completions/makepkg /usr/share/bash-completion/completions/makepkg.bak
    2) Upgrade pacman
    # pacman -S pacman
    3) Upgrade bash-completion (this step will remove the file)
    # pacman -S bash-completion
    4) Reinstall pacman again, to not loose the file.
    # pacman -S pacman
    5) Now, you can remove the backup.
    # rm -f /usr/share/bash-completion/completions/makepkg.bak

    toofishes wrote:
    defcon wrote:
    i've seen that pacman 3.1 has it's own bash completion file
    i installed the new pacman, but bash_completion doesnt work....
    Did you source it or logout/login? It doesn't magically do that itself.
    . /etc/bash_completion
    both, i reload it with source ~/.bashrc  and later i logged out/in

  • Problem with ssh and bash-completion

    I and a co-worker are having a weird problem with ssh and bash-completion. We have a local config in .ssh/config with hosts we connect everyday. An example:
    host foo
    hostname foo.org
    user foobar
    host foobar
    hostname foobar.org
    user foobar
    When we try to type
    ssh foo<tab><tab>b<tab>
    the console just freeze and we can't type anything, everything we type is ignored, but after about 30 seconds the host is completed.
    This works a some time ago, so some upgrade make this happen. Anyone can reproduce this?

    quigybo wrote:
    Actually thinking about it, rather than using the semi-dodgy fix posted on the bug tracker, we can just test if the daemon is running since we are not on MacOS X. It is cleaner and 250 ms quicker.
    --- bash_completion.orig 2010-09-14 05:33:22.000000000 +0930
    +++ bash_completion 2010-09-14 05:45:04.000000000 +0930
    @@ -1316,10 +1316,12 @@
    # contains ";", it may mistify the result. But on Gentoo (at least),
    # -k isn't available (even if mentioned in the manpage), so...
    if type avahi-browse >&/dev/null; then
    - COMPREPLY=( "${COMPREPLY[@]}" $( \
    - compgen -P "$prefix$user" -S "$suffix" -W \
    - "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    - awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    + if [ -n "$(pidof avahi-daemon)" ]; then
    + COMPREPLY=( "${COMPREPLY[@]}" $( \
    + compgen -P "$prefix$user" -S "$suffix" -W \
    + "$( avahi-browse -cpr _workstation._tcp 2>/dev/null | \
    + awk -F';' '/^=/ { print $7 }' | sort -u )" -- "$cur" ) )
    + fi
    fi
    # Add results of normal hostname completion, unless
    This is the same test as was used in bash-completion 1.1.
    Thanks  quigybo, I use your patch, the issue is gone
    Why does so many packages depends on Avahi? Maybe make it optdepends is
    enough?
    my laptop $ pacman -Qi avahi
    Required By : gnome-disk-utility gnome-vfs libcups mpd sane

  • Bash completion upgrade breaks pacman bc

    hello,
    today's bash completion upgrade deletes the archlinux file under /etc/bash_completion.d/.
    pacman's bash completion doesn't work anymore. i've seen that pacman 3.1 has it's own bash completion file.
    is this somehow related?
    vlad
    ps: i'm not using testing.
    Last edited by DonVla (2008-01-10 17:50:15)

    toofishes wrote:
    defcon wrote:
    i've seen that pacman 3.1 has it's own bash completion file
    i installed the new pacman, but bash_completion doesnt work....
    Did you source it or logout/login? It doesn't magically do that itself.
    . /etc/bash_completion
    both, i reload it with source ~/.bashrc  and later i logged out/in

  • Online split mirror Backup is getting completed with a warning message

    Dear Experts,
    Recently we have configured the online split mirror backup and it is getting completed with a warning message that "BR0494W Oracle pfile cannot be created from spfile in remote OPS$ connect mode on UNIX platforms"
    Please suggest and below is the complete backup log and appreciate quick help
    Detail log:                    bdxudchg.anf
    BR0051I BRBACKUP 6.40 (15)                                                                               
    BR0055I Start of database backup: bdxudchg.anf 2008-04-26 17.56.04                                                                               
    BR0049W Last BRBACKUP run was probably killed                                                                               
    BR0494W Oracle pfile cannot be created from spfile in remote OPS$ connect mode on UNIX platforms                                                                               
    BR0351I Restoring /oracle/PD1/sapbackup/cntrlPD1.dbf                                                                               
    BR0355I from /oracle/PD1/sapbackup/cntrlPD1.dbf ...                                                                               
    BR0319I Control file copy created: /oracle/PD1/sapbackup/cntrlPD1.dbf 34349056                                                                               
    BR0101I Parameters                                                                               
    Name                           Value                                                                               
    oracle_sid                     PD1                                                                               
    oracle_home                    /oracle/PD1/920_64                                                                               
    oracle_profile                 /oracle/PD1/920_64/dbs/initPD1.ora                                                                               
    sapdata_home                   /oracle/PD1                                                                               
    sap_profile                    /oracle/PD1/920_64/dbs/initPD1.sap                                                                               
    backup_mode                    ALL                                                                               
    backup_type                    online_split                                                                               
    backup_dev_type                util_file                                                                               
    orig_db_home                   /oracle/PD1                                                                               
    util_par_file                  /oracle/PD1/920_64/dbs/initPD1.utl                                                                               
    primary_db                     PD1BKP.world                                                                               
    split_cmd                      /wipro/SD-scripts/SD_split_mount_delay.sh                                                                               
    resync_cmd                     NULL                                                                               
    system_info                    orapd1/orapd1 peppdb HP-UX B.11.23 U ia64                                                                               
    oracle_info                    PD1 9.2.0.7.0 8192 23999 11040627253                                                                               
    sap_info                       640 SAPPD1 PD1 Z0784028998 R3_ORA 0020209102                                                                               
    make_info                      hpia64 OCI_920 Oct  9 2004                                                                               
    command_line                   brbackup -u / -c -d util_file                                                                               
    BR0116I ARCHIVE LOG LIST before backup for database instance PD1                                                                               
    Parameter                      Value                                                                               
    Database log mode              Archive Mode                                                                               
    Automatic archival             Enabled                                                                               
    Archive destination            /oracle/PD1/oraarch/PD1arch                                                                               
    Archive format                 %t_%s.dbf                                                                               
    Oldest online log sequence     23996                                                                               
    Next log sequence to archive   23999                                                                               
    Current log sequence           23999      SCN: 11040627253                                                                               
    Database block size            8192       Thread: 1                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.47.42                                                                               
    BR0315I 'Alter tablespace PSAPPD1 begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.00                                                                               
    BR0315I 'Alter tablespace PSAPPD1640 begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.03                                                                               
    BR0315I 'Alter tablespace PSAPPD1USR begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.08                                                                               
    BR0315I 'Alter tablespace PSAPTOOLS begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.57                                                                               
    BR0315I 'Alter tablespace PSAPUNDO begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.59                                                                               
    BR0315I 'Alter tablespace SYSTEM begin backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 18.48.59                                                                               
    BR0295I Splitting mirror disks...                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.32                                                                               
    BR0296I Split of mirror disks successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1 end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1640 end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPPD1USR end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPTOOLS end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace PSAPUNDO end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0317I 'Alter tablespace SYSTEM end backup' successful                                                                               
    BR0280I BRBACKUP time stamp: 2008-04-26 19.19.39                                                                               
    BR0340I Switching to next online redo log file for database instance PD1 ...                                                                               
    BR0321I Switch to next online redo log file for database instance PD1 successful                                                                               
    BR0117I ARCHIVE LOG LIST after backup for database instance PD1                                                                               
    Parameter                      Value                                                                               
    Database log mode              Archive Mode                                                                               
    Automatic archival             Enabled                                                                               
    Archive destination            /oracle/PD1/oraarch/PD1arch                                                                               
    Archive format                 %t_%s.dbf                                                                               
    Oldest online log sequence     24023                                                                               
    Next log sequence to archive   24026                                                                               
    Current log sequence           24026      SCN: 11041541242                                                                               
    Database block size            8192       Thread: 1                                                                               
    BR0118I Tablespaces and data files                                                                               
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_1/pd1.data1                12884910080    4  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_2/pd1.data2                12884910080    5  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_3/pd1.data3                12884910080    8  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_21/pd1.data21              12884910080   11  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_11/pd1.data11              12884910080   10  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_4/pd1.data4                12884910080    9  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_31/pd1.data31              12884910080   12  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_51/pd1.data51              12884910080   14  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_5/pd1.data5                12884910080   16  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_6/pd1.data6                 6442459136   25  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_52/pd1.data52              12884910080   24  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_42/pd1.data42              12884910080   23  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_32/pd1.data32              12884910080   22  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_22/pd1.data22              12884910080   21  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_12/pd1.data12              12884910080   20  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_91/pd1.data91              12884910080   19  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_81/pd1.data81              12884910080   18  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_71/pd1.data71              12884910080   17  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_44/pd1.data44              12884910080   42  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_24/pd1.data24              12884910080   41  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_14/pd1.data14              12884910080   40  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_93/pd1.data93              12884910080   39  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_83/pd1.data83              12884910080   38  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_73/pd1.data73              12884910080   37  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_63/pd1.data63              12884910080   36  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_53/pd1.data53              12884910080   35  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_7/pd1.data7                12884910080   34  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_95/pd1.data95              12884910080   59  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_75/pd1.data75               6442459136   58  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_85/pd1.data85              12884910080   57  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_65/pd1.data65              12884910080   56  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_9/pd1.data9                 6442459136   55  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_55/pd1.data55               6442459136   54  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_35/pd1.data35              12884910080   53  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_45/pd1.data45              12884910080   52  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_25/pd1.data25              12884910080   51  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_67/pd1.data67               6442459136   76  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_87/pd1.data87              12884910080   75  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_57/pd1.data57               6442459136   74  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_37/pd1.data37              12884910080   73  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_27/pd1.data27               6442459136   72  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_47/pd1.data47               6442459136   71  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_17/pd1.data17               6442459136   70  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_96/pd1.data96               6442459136   69  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_76/pd1.data76              12884910080   68  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_89/pd1.data89               6442459136   93  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_59/pd1.data59               6442459136   92  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_39/pd1.data39               6442459136   91  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_29/pd1.data29               6442459136   90  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_49/pd1.data49               6442459136   89  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_19/pd1.data19               6442459136   88  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_98/pd1.data98               6442459136   87  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_78/pd1.data78               6442459136   86  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_68/pd1.data68               6442459136   85  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_141/pd1.data141             6442459136  110  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_131/pd1.data131             6442459136  109  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_121/pd1.data121             6442459136  108  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_111/pd1.data111             6442459136  107  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_101/pd1.data101             6442459136  106  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_100/pd1.data100             6442459136  105  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_80/pd1.data80               6442459136  104  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_70/pd1.data70               6442459136  103  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_90/pd1.data90               6442459136  102  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_113/pd1.data113             6442459136  127  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_103/pd1.data103             6442459136  126  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_192/pd1.data192             6442459136  125  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_182/pd1.data182             6442459136  124  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_172/pd1.data172             6442459136  123  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_162/pd1.data162             6442459136  122  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_152/pd1.data152             6442459136  121  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_142/pd1.data142             6442459136  120  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_132/pd1.data132             6442459136  119  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_221/pd1.data221             6442459136  208  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_211/pd1.data211             6442459136  207  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_201/pd1.data201             6442459136  206  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_190/pd1.data190             6442459136  205  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_200/pd1.data200             6442459136  204  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_170/pd1.data170             6442459136  203  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_180/pd1.data180             6442459136  202  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_140/pd1.data140             6442459136  201  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_160/pd1.data160             6442459136  200  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_150/pd1.data150             6442459136  199  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_110/pd1.data110             6442459136  198  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_130/pd1.data130            6442459136  197  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_120/pd1.data120             6442459136  196  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_189/pd1.data189            6442459136  195  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_199/pd1.data199            6442459136  194  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_169/pd1.data169             6442459136  193  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_179/pd1.data179             6442459136  192  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_159/pd1.data159             6442459136  191  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_149/pd1.data149             6442459136  190  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_139/pd1.data139             6442459136  189  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_109/pd1.data109             6442459136  188  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_129/pd1.data129             6442459136  187  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_119/pd1.data119             6442459136  186  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_188/pd1.data188             6442459136  185  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_198/pd1.data198             6442459136  184  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_168/pd1.data168             6442459136  183  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_178/pd1.data178             6442459136  182  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_148/pd1.data148             6442459136  181  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_158/pd1.data158             6442459136  180  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_138/pd1.data138             6442459136  179  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_108/pd1.data108             6442459136  178  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_128/pd1.data128           12884910080  177  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata3/pd1_118/pd1.data118             6442459136  176  1074921473  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_187/pd1.data187             6442459136  175  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_197/pd1.data197             6442459136  174  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_167/pd1.data167             6442459136  173  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_177/pd1.data177            6442459136  172  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_157/pd1.data157             6442459136  171  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_147/pd1.data147             6442459136  170  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_137/pd1.data137             6442459136  169  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_117/pd1.data117             6442459136  168  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata4/pd1_127/pd1.data127             6442459136  167  1074987009  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_107/pd1.data107             6442459136  166  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_186/pd1.data186             6442459136  165  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_196/pd1.data196             6442459136  164  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata2/pd1_166/pd1.data166             6442459136  163  1074855937  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata14/pd1_176/pd1.data176            6442459136  162  1075642369  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata1/pd1_156/pd1.data156             6442459136  161  1074790401  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata6/pd1_146/pd1.data146             6442459136  160  1075118081  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE    /oracle/PD1/sapdata5/pd1_136/pd1.data136             6442459136  159  1075052545  NOLINK  FILE             0            0                                                                               
    PSAPPD1        ONLINE*    ONLINE   

    Hi again
    Please let me know whether we need to put the parameter remote_login_password=exclusive in pfile or spfile
    I prefer the spfile, just:
    SQL> alter system set remote_login_passwordfile = exclusive scope = spfile;
    To grant sysoper to system:
    SQL> grant sysoper to system;
    And restart the instance.
    Regards
    Michael

  • Problems with Bash Completion

    Hi,
    I recently noticed an odd new behavior of the bash-completion package.
    For example:
    Lets say there is folder called 'Downloads'. The oldd behavior was:
    mv Dow[tab]
    mv Downloads/
    Now, it's like this:
    mv Dow[tab]
    mv Downloads
    (with a space after 'Downloads')
    It's annoying because, you can't get an ls output when pressing tab again.
    Another example: Let's assume there is a file called 'some file.txt'
    Old:
    mv some[tab]
    mv some\ file.txt
    New:
    mv some[tab]
    mv some file.txt
    Pretty annoying too. mv doesn't work anymore because of the space in the filepath.
    Does anyone know how to fix this?

    https://bbs.archlinux.org/viewtopic.php?id=113158

  • Netcfg2 with bash-completion

    I've written a script to support bash completion for netcfg2.
    Here it is:
    http://fatcat.ftj.agh.edu.pl/~sitarzm/A … on/netcfg2
    Just download it and place it in /etc/bash_completion.d, log out and login again and give it a try.

    MAC!EK wrote:
    Since the script was quite old I replaced it with a new version on that site:
    http://fatcat.ftj.agh.edu.pl/~sitarzm/A … ion/netcfg
    or
    http://fatcat.ftj.agh.edu.pl/~sitarzm/A … on/netcfg2
    uastasi if you want the completion to work with 'n' command add a line at the end:
    complete -F _netcfg n
    Awesome, thank you :)

  • Bash-completion works only with X

    Hi,
    For a long time bash-completion has not been working for me in VC. This didn't change with numerous upgrades, so I think this must be due to some my local setting. In VC it doesn't work for any user and in X it works for all users, so it is most probably something system-wide that is causing this. I never touched any files owned by bash-completion package. I browsed through /etc/profile and /etc/profile.d/ but didn't find anything weird.
    Any clues where to fix this?
    Thanks!

    I've always had the same problem as the OP, just never got round to posting about it. A solution would make my systemctl aliases much more useful.
    @Trilby, you need the bash-completion package installed.
    Last edited by slithery (2015-01-06 21:50:34)

  • Can't install Git with Pacman

    There seems to be some conflict with libssh2 and curl.
    I tried to use the option --force and it actually broke pacman. I had to reinstall the whole distribution.
    What's the proper way to fix this issue ?
    Pacman version is 4.2.1
    /etc/pacman.d/mirrorlist:
    Server = [url]ftp://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch[/url]
    Server = [url]http://archlinux.mirrors.ovh.net/archlinux/$repo/os/$arch[/url]
    $ sudo pacman -S git
    resolving dependencies...
    looking for conflicting packages...
    Packages (10) ca-certificates-20150402-1 ca-certificates-cacert-20140824-2 ca-certificates-mozilla-3.18-3
    ca-certificates-utils-20150402-1 curl-7.42.0-1 libssh2-1.5.0-1 libtasn1-4.5-1 p11-kit-0.23.1-2
    perl-error-0.17023-1 git-2.4.0-1
    Total Installed Size: 28.87 MiB
    :: Proceed with installation? [Y/n]
    (10/10) checking keys in keyring [########################################] 100%
    (10/10) checking package integrity [########################################] 100%
    (10/10) loading package files [########################################] 100%
    (10/10) checking for file conflicts [########################################] 100%
    error: failed to commit transaction (conflicting files)
    libssh2: /usr/include/libssh2.h exists in filesystem
    libssh2: /usr/include/libssh2_publickey.h exists in filesystem
    libssh2: /usr/include/libssh2_sftp.h exists in filesystem
    libssh2: /usr/lib/libssh2.so exists in filesystem
    libssh2: /usr/lib/libssh2.so.1 exists in filesystem
    libssh2: /usr/lib/libssh2.so.1.0.1 exists in filesystem
    libssh2: /usr/lib/pkgconfig/libssh2.pc exists in filesystem
    libssh2: /usr/share/licenses/libssh2/LICENSE exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_connect.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_disconnect.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_get_identity.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_list_identities.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_userauth.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_banner_set.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_base64_decode.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_close.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_direct_tcpip.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_direct_tcpip_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_eof.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_exec.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_flush.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_flush_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_flush_stderr.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_accept.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_cancel.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_listen.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_listen_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_get_exit_signal.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_get_exit_status.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_handle_extended_data.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_handle_extended_data2.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_ignore_extended_data.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_open_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_open_session.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_process_startup.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_read_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_read_stderr.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_receive_window_adjust.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_receive_window_adjust2.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty_size.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty_size_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_send_eof.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_set_blocking.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_setenv.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_setenv_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_shell.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_subsystem.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_wait_closed.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_wait_eof.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_read_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_write.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_write_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_write.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_write_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_write_stderr.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_x11_req.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_x11_req_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_exit.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_hostkey_hash.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_keepalive_config.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_keepalive_send.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_add.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_addc.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_check.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_checkp.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_del.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_get.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_readfile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_readline.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_writefile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_writeline.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_poll.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_poll_channel_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_add.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_add_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_list_fetch.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_list_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_remove.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_remove_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_shutdown.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_recv.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_send.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_send64.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_send_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_abstract.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_banner_get.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_banner_set.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_block_directions.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_callback_set.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_disconnect.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_disconnect_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_flag.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_get_blocking.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_get_timeout.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_handshake.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_hostkey.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_init_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_last_errno.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_last_error.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_method_pref.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_methods.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_set_blocking.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_set_timeout.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_startup.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_supported_algs.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_close.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_close_handle.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_closedir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fsetstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fstat_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fstatvfs.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fsync.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_get_channel.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_last_error.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_lstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_mkdir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_mkdir_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_open.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_open_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_opendir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_readdir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_readdir_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_readlink.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_realpath.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rename.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rename_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rewind.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rmdir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rmdir_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_seek.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_seek64.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_setstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_shutdown.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_stat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_stat_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_statvfs.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_symlink.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_symlink_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_tell.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_tell64.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_unlink.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_unlink_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_write.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_trace.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_trace_sethandler.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_authenticated.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_hostbased_fromfile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_hostbased_fromfile_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_keyboard_interactive.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_keyboard_interactive_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_list.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_password.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_password_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_publickey.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_publickey_fromfile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_publickey_fromfile_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_version.3.gz exists in filesystem
    curl: /usr/bin/curl exists in filesystem
    curl: /usr/bin/curl-config exists in filesystem
    curl: /usr/include/curl/curl.h exists in filesystem
    curl: /usr/include/curl/curlbuild-64.h exists in filesystem
    curl: /usr/include/curl/curlbuild.h exists in filesystem
    curl: /usr/include/curl/curlrules.h exists in filesystem
    curl: /usr/include/curl/curlver.h exists in filesystem
    curl: /usr/include/curl/easy.h exists in filesystem
    curl: /usr/include/curl/mprintf.h exists in filesystem
    curl: /usr/include/curl/multi.h exists in filesystem
    curl: /usr/include/curl/stdcheaders.h exists in filesystem
    curl: /usr/include/curl/typecheck-gcc.h exists in filesystem
    curl: /usr/lib/libcurl.so exists in filesystem
    curl: /usr/lib/libcurl.so.4 exists in filesystem
    curl: /usr/lib/libcurl.so.4.3.0 exists in filesystem
    curl: /usr/lib/pkgconfig/libcurl.pc exists in filesystem
    curl: /usr/share/aclocal/libcurl.m4 exists in filesystem
    curl: /usr/share/licenses/curl/COPYING exists in filesystem
    curl: /usr/share/man/man1/curl-config.1.gz exists in filesystem
    curl: /usr/share/man/man1/curl.1.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAXCONNECTS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_PIPELINING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_PIPELINING_SERVER_BL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_PIPELINING_SITE_BL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_SOCKETDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_SOCKETFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_TIMERDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_TIMERFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ACCEPT_ENCODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ADDRESS_SCOPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_APPEND.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_AUTOREFERER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_BUFFERSIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CAINFO.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CAPATH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CERTINFO.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CHUNK_BGN_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CHUNK_DATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CHUNK_END_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CLOSESOCKETDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CLOSESOCKETFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONNECTTIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONNECT_ONLY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIEFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIEJAR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIELIST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIESESSION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COPYPOSTFIELDS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CRLF.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CRLFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CUSTOMREQUEST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DEBUGDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DEBUGFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DIRLISTONLY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_CACHE_TIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_INTERFACE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_LOCAL_IP4.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_LOCAL_IP6.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_SERVERS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_EGDSOCKET.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ERRORBUFFER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_EXPECT_100_TIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FAILONERROR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FILETIME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FNMATCH_DATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FNMATCH_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FOLLOWLOCATION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FORBID_REUSE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FRESH_CONNECT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTPPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTPSSLAUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_ACCOUNT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_ALTERNATIVE_TO_USER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_CREATE_MISSING_DIRS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_FILEMETHOD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_RESPONSE_TIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_SKIP_PASV_IP.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_SSL_CCC.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_USE_EPRT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_USE_EPSV.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_USE_PRET.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_GSSAPI_DELEGATION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADERDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADERFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADEROPT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP200ALIASES.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPAUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPGET.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPHEADER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPPOST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPPROXYTUNNEL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP_CONTENT_DECODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP_VERSION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IGNORE_CONTENT_LENGTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INFILESIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INFILESIZE_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INTERFACE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INTERLEAVEDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INTERLEAVEFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IOCTLDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IOCTLFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IPRESOLVE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ISSUERCERT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_KEYPASSWD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_KRBLEVEL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOCALPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOCALPORTRANGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOGIN_OPTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOW_SPEED_LIMIT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOW_SPEED_TIME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAIL_AUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAIL_FROM.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAIL_RCPT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXCONNECTS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXFILESIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXFILESIZE_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXREDIRS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NETRC.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NETRC_FILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NEW_FILE_PERMS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOBODY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOPROGRESS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOPROXY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOSIGNAL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_OPENSOCKETDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_OPENSOCKETFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PASSWORD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PATH_AS_IS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTFIELDS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTFIELDSIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTFIELDSIZE_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTQUOTE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTREDIR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PREQUOTE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PRIVATE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROGRESSDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROGRESSFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROTOCOLS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYAUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYHEADER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYPASSWORD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYTYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYUSERNAME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYUSERPWD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXY_TRANSFER_MODE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_QUOTE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RANDOM_FILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RANGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_READDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_READFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_REDIR_PROTOCOLS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_REFERER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RESOLVE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RESUME_FROM.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RESUME_FROM_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_CLIENT_CSEQ.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_REQUEST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_SERVER_CSEQ.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_SESSION_ID.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_STREAM_URI.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_TRANSPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SASL_IR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SEEKDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SEEKFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SHARE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKOPTDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKOPTFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_NEC.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_SERVICE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_AUTH_TYPES.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_KEYDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_KEYFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_KNOWNHOSTS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_PRIVATE_KEYFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_PUBLIC_KEYFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLCERT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLCERTTYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLENGINE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLENGINE_DEFAULT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLKEY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLKEYTYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLVERSION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_CIPHER_LIST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_CTX_DATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_CTX_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_ENABLE_ALPN.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_ENABLE_NPN.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_FALSESTART.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_OPTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_SESSIONID_CACHE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_VERIFYHOST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_VERIFYPEER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_VERIFYSTATUS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_STDERR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_KEEPALIVE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_KEEPIDLE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_KEEPINTVL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_NODELAY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TELNETOPTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TFTP_BLKSIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMECONDITION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMEVALUE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TLSAUTH_PASSWORD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TLSAUTH_TYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TLSAUTH_USERNAME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TRANSFERTEXT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TRANSFER_ENCODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_UNIX_SOCKET_PATH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_UNRESTRICTED_AUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_UPLOAD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_URL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USERAGENT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USERNAME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USERPWD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USE_SSL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_VERBOSE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_WILDCARDMATCH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_WRITEDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_WRITEFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_XFERINFODATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_XFERINFOFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_XOAUTH2_BEARER.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_duphandle.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_escape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_getinfo.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_pause.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_perform.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_recv.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_reset.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_send.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_setopt.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_strerror.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_unescape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_escape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_formadd.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_formfree.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_formget.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_free.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_getdate.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_getenv.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_global_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_global_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_global_init_mem.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_mprintf.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_add_handle.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_assign.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_fdset.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_info_read.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_perform.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_remove_handle.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_setopt.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_socket.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_socket_action.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_strerror.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_timeout.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_wait.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_setopt.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_strerror.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_slist_append.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_slist_free_all.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_strequal.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_unescape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_version.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_version_info.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-easy.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-errors.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-multi.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-share.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-symbols.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-tutorial.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl.3.gz exists in filesystem
    Errors occurred, no packages were upgraded.
    Last edited by mtgred (2015-05-12 18:21:26)

    pkgfile is not installed.
    Attempting to install it generates the same conflict files error for izo, libarchive, libssh2, curl and pacman.
    sudo pacman -S pkgfile
    resolving dependencies...
    looking for conflicting packages...
    Packages (17) archlinux-keyring-20150212-1 curl-7.42.0-1 gnupg-2.1.3-3 gnutls-3.4.1-1 gpgme-1.5.4-1 libarchive-3.1.2-8 libassuan-2.2.0-1 libksba-1.3.3-1 libssh2-1.5.0-1 lzo-2.09-1 nettle-3.1.1-1 npth-1.2-1 pacman-4.2.1-1
    pacman-mirrorlist-20150315-1 pinentry-0.9.1-1 pth-2.0.7-5 pkgfile-15-1
    Total Download Size: 0.02 MiB
    Total Installed Size: 24.84 MiB
    :: Proceed with installation? [Y/n]
    :: Retrieving packages ...
    pkgfile-15-1-x86_64 21.6 KiB 0.00B/s 00:00 [########################################################################################] 100%
    (17/17) checking keys in keyring [########################################################################################] 100%
    (17/17) checking package integrity [########################################################################################] 100%
    (17/17) loading package files [########################################################################################] 100%
    (17/17) checking for file conflicts [########################################################################################] 100%
    error: failed to commit transaction (conflicting files)
    lzo: /usr/include/lzo/lzo1.h exists in filesystem
    lzo: /usr/include/lzo/lzo1a.h exists in filesystem
    lzo: /usr/include/lzo/lzo1b.h exists in filesystem
    lzo: /usr/include/lzo/lzo1c.h exists in filesystem
    lzo: /usr/include/lzo/lzo1f.h exists in filesystem
    lzo: /usr/include/lzo/lzo1x.h exists in filesystem
    lzo: /usr/include/lzo/lzo1y.h exists in filesystem
    lzo: /usr/include/lzo/lzo1z.h exists in filesystem
    lzo: /usr/include/lzo/lzo2a.h exists in filesystem
    lzo: /usr/include/lzo/lzo_asm.h exists in filesystem
    lzo: /usr/include/lzo/lzoconf.h exists in filesystem
    lzo: /usr/include/lzo/lzodefs.h exists in filesystem
    lzo: /usr/include/lzo/lzoutil.h exists in filesystem
    lzo: /usr/include/lzo/minilzo.h exists in filesystem
    lzo: /usr/lib/liblzo2.so exists in filesystem
    lzo: /usr/lib/liblzo2.so.2 exists in filesystem
    lzo: /usr/lib/liblzo2.so.2.0.0 exists in filesystem
    lzo: /usr/lib/libminilzo.so exists in filesystem
    lzo: /usr/lib/libminilzo.so.0 exists in filesystem
    lzo: /usr/share/doc/lzo/AUTHORS exists in filesystem
    lzo: /usr/share/doc/lzo/COPYING exists in filesystem
    lzo: /usr/share/doc/lzo/LZO.FAQ exists in filesystem
    lzo: /usr/share/doc/lzo/LZO.TXT exists in filesystem
    lzo: /usr/share/doc/lzo/LZOAPI.TXT exists in filesystem
    lzo: /usr/share/doc/lzo/NEWS exists in filesystem
    lzo: /usr/share/doc/lzo/THANKS exists in filesystem
    libarchive: /usr/bin/bsdcpio exists in filesystem
    libarchive: /usr/bin/bsdtar exists in filesystem
    libarchive: /usr/include/archive.h exists in filesystem
    libarchive: /usr/include/archive_entry.h exists in filesystem
    libarchive: /usr/lib/libarchive.la exists in filesystem
    libarchive: /usr/lib/libarchive.so exists in filesystem
    libarchive: /usr/lib/libarchive.so.13 exists in filesystem
    libarchive: /usr/lib/libarchive.so.13.1.2 exists in filesystem
    libarchive: /usr/lib/pkgconfig/libarchive.pc exists in filesystem
    libarchive: /usr/share/licenses/libarchive/COPYING exists in filesystem
    libarchive: /usr/share/man/man1/bsdcpio.1.gz exists in filesystem
    libarchive: /usr/share/man/man1/bsdtar.1.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry_acl.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry_linkify.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry_paths.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry_perms.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry_stat.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_entry_time.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_data.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_disk.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_extract.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_filter.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_format.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_free.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_header.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_new.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_open.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_read_set_options.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_util.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_blocksize.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_data.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_disk.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_filter.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_finish_entry.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_format.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_free.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_header.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_new.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_open.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/archive_write_set_options.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/libarchive.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/libarchive_changes.3.gz exists in filesystem
    libarchive: /usr/share/man/man3/libarchive_internals.3.gz exists in filesystem
    libarchive: /usr/share/man/man5/cpio.5.gz exists in filesystem
    libarchive: /usr/share/man/man5/libarchive-formats.5.gz exists in filesystem
    libarchive: /usr/share/man/man5/mtree.5.gz exists in filesystem
    libarchive: /usr/share/man/man5/tar.5.gz exists in filesystem
    libssh2: /usr/include/libssh2.h exists in filesystem
    libssh2: /usr/include/libssh2_publickey.h exists in filesystem
    libssh2: /usr/include/libssh2_sftp.h exists in filesystem
    libssh2: /usr/lib/libssh2.so exists in filesystem
    libssh2: /usr/lib/libssh2.so.1 exists in filesystem
    libssh2: /usr/lib/libssh2.so.1.0.1 exists in filesystem
    libssh2: /usr/lib/pkgconfig/libssh2.pc exists in filesystem
    libssh2: /usr/share/licenses/libssh2/LICENSE exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_connect.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_disconnect.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_get_identity.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_list_identities.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_agent_userauth.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_banner_set.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_base64_decode.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_close.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_direct_tcpip.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_direct_tcpip_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_eof.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_exec.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_flush.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_flush_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_flush_stderr.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_accept.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_cancel.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_listen.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_forward_listen_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_get_exit_signal.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_get_exit_status.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_handle_extended_data.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_handle_extended_data2.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_ignore_extended_data.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_open_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_open_session.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_process_startup.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_read_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_read_stderr.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_receive_window_adjust.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_receive_window_adjust2.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty_size.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_request_pty_size_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_send_eof.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_set_blocking.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_setenv.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_setenv_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_shell.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_subsystem.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_wait_closed.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_wait_eof.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_read_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_write.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_window_write_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_write.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_write_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_write_stderr.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_x11_req.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_channel_x11_req_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_exit.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_hostkey_hash.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_keepalive_config.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_keepalive_send.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_add.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_addc.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_check.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_checkp.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_del.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_get.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_readfile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_readline.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_writefile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_knownhost_writeline.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_poll.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_poll_channel_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_add.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_add_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_list_fetch.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_list_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_remove.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_remove_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_publickey_shutdown.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_recv.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_send.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_send64.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_scp_send_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_abstract.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_banner_get.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_banner_set.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_block_directions.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_callback_set.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_disconnect.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_disconnect_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_flag.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_free.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_get_blocking.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_get_timeout.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_handshake.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_hostkey.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_init_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_last_errno.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_last_error.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_method_pref.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_methods.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_set_blocking.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_set_timeout.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_startup.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_session_supported_algs.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_close.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_close_handle.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_closedir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fsetstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fstat_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fstatvfs.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_fsync.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_get_channel.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_init.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_last_error.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_lstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_mkdir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_mkdir_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_open.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_open_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_opendir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_read.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_readdir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_readdir_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_readlink.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_realpath.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rename.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rename_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rewind.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rmdir.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_rmdir_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_seek.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_seek64.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_setstat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_shutdown.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_stat.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_stat_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_statvfs.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_symlink.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_symlink_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_tell.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_tell64.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_unlink.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_unlink_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_sftp_write.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_trace.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_trace_sethandler.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_authenticated.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_hostbased_fromfile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_hostbased_fromfile_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_keyboard_interactive.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_keyboard_interactive_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_list.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_password.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_password_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_publickey.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_publickey_fromfile.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_userauth_publickey_fromfile_ex.3.gz exists in filesystem
    libssh2: /usr/share/man/man3/libssh2_version.3.gz exists in filesystem
    curl: /usr/bin/curl exists in filesystem
    curl: /usr/bin/curl-config exists in filesystem
    curl: /usr/include/curl/curl.h exists in filesystem
    curl: /usr/include/curl/curlbuild-64.h exists in filesystem
    curl: /usr/include/curl/curlbuild.h exists in filesystem
    curl: /usr/include/curl/curlrules.h exists in filesystem
    curl: /usr/include/curl/curlver.h exists in filesystem
    curl: /usr/include/curl/easy.h exists in filesystem
    curl: /usr/include/curl/mprintf.h exists in filesystem
    curl: /usr/include/curl/multi.h exists in filesystem
    curl: /usr/include/curl/stdcheaders.h exists in filesystem
    curl: /usr/include/curl/typecheck-gcc.h exists in filesystem
    curl: /usr/lib/libcurl.so exists in filesystem
    curl: /usr/lib/libcurl.so.4 exists in filesystem
    curl: /usr/lib/libcurl.so.4.3.0 exists in filesystem
    curl: /usr/lib/pkgconfig/libcurl.pc exists in filesystem
    curl: /usr/share/aclocal/libcurl.m4 exists in filesystem
    curl: /usr/share/licenses/curl/COPYING exists in filesystem
    curl: /usr/share/man/man1/curl-config.1.gz exists in filesystem
    curl: /usr/share/man/man1/curl.1.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAXCONNECTS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAX_HOST_CONNECTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAX_PIPELINE_LENGTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_PIPELINING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_PIPELINING_SERVER_BL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_PIPELINING_SITE_BL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_SOCKETDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_SOCKETFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_TIMERDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLMOPT_TIMERFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ACCEPTTIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ACCEPT_ENCODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ADDRESS_SCOPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_APPEND.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_AUTOREFERER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_BUFFERSIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CAINFO.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CAPATH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CERTINFO.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CHUNK_BGN_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CHUNK_DATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CHUNK_END_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CLOSESOCKETDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CLOSESOCKETFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONNECTTIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONNECTTIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONNECT_ONLY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONV_FROM_NETWORK_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONV_FROM_UTF8_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CONV_TO_NETWORK_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIEFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIEJAR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIELIST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COOKIESESSION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_COPYPOSTFIELDS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CRLF.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CRLFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_CUSTOMREQUEST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DEBUGDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DEBUGFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DIRLISTONLY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_CACHE_TIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_INTERFACE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_LOCAL_IP4.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_LOCAL_IP6.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_SERVERS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_EGDSOCKET.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ERRORBUFFER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_EXPECT_100_TIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FAILONERROR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FILETIME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FNMATCH_DATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FNMATCH_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FOLLOWLOCATION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FORBID_REUSE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FRESH_CONNECT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTPPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTPSSLAUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_ACCOUNT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_ALTERNATIVE_TO_USER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_CREATE_MISSING_DIRS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_FILEMETHOD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_RESPONSE_TIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_SKIP_PASV_IP.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_SSL_CCC.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_USE_EPRT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_USE_EPSV.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_FTP_USE_PRET.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_GSSAPI_DELEGATION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADERDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADERFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HEADEROPT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP200ALIASES.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPAUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPGET.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPHEADER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPPOST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTPPROXYTUNNEL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP_CONTENT_DECODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP_TRANSFER_DECODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_HTTP_VERSION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IGNORE_CONTENT_LENGTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INFILESIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INFILESIZE_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INTERFACE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INTERLEAVEDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_INTERLEAVEFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IOCTLDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IOCTLFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_IPRESOLVE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_ISSUERCERT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_KEYPASSWD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_KRBLEVEL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOCALPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOCALPORTRANGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOGIN_OPTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOW_SPEED_LIMIT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_LOW_SPEED_TIME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAIL_AUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAIL_FROM.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAIL_RCPT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXCONNECTS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXFILESIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXFILESIZE_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAXREDIRS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAX_RECV_SPEED_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_MAX_SEND_SPEED_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NETRC.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NETRC_FILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NEW_DIRECTORY_PERMS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NEW_FILE_PERMS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOBODY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOPROGRESS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOPROXY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_NOSIGNAL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_OPENSOCKETDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_OPENSOCKETFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PASSWORD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PATH_AS_IS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTFIELDS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTFIELDSIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTFIELDSIZE_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTQUOTE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_POSTREDIR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PREQUOTE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PRIVATE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROGRESSDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROGRESSFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROTOCOLS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYAUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYHEADER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYPASSWORD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYTYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYUSERNAME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXYUSERPWD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PROXY_TRANSFER_MODE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_PUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_QUOTE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RANDOM_FILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RANGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_READDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_READFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_REDIR_PROTOCOLS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_REFERER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RESOLVE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RESUME_FROM.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RESUME_FROM_LARGE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_CLIENT_CSEQ.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_REQUEST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_SERVER_CSEQ.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_SESSION_ID.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_STREAM_URI.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_RTSP_TRANSPORT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SASL_IR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SEEKDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SEEKFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SHARE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKOPTDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKOPTFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_NEC.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SOCKS5_GSSAPI_SERVICE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_AUTH_TYPES.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_HOST_PUBLIC_KEY_MD5.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_KEYDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_KEYFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_KNOWNHOSTS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_PRIVATE_KEYFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSH_PUBLIC_KEYFILE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLCERT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLCERTTYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLENGINE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLENGINE_DEFAULT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLKEY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLKEYTYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSLVERSION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_CIPHER_LIST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_CTX_DATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_CTX_FUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_ENABLE_ALPN.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_ENABLE_NPN.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_FALSESTART.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_OPTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_SESSIONID_CACHE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_VERIFYHOST.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_VERIFYPEER.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_SSL_VERIFYSTATUS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_STDERR.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_KEEPALIVE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_KEEPIDLE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_KEEPINTVL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TCP_NODELAY.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TELNETOPTIONS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TFTP_BLKSIZE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMECONDITION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMEOUT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMEOUT_MS.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TIMEVALUE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TLSAUTH_PASSWORD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TLSAUTH_TYPE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TLSAUTH_USERNAME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TRANSFERTEXT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_TRANSFER_ENCODING.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_UNIX_SOCKET_PATH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_UNRESTRICTED_AUTH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_UPLOAD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_URL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USERAGENT.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USERNAME.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USERPWD.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_USE_SSL.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_VERBOSE.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_WILDCARDMATCH.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_WRITEDATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_WRITEFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_XFERINFODATA.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_XFERINFOFUNCTION.3.gz exists in filesystem
    curl: /usr/share/man/man3/CURLOPT_XOAUTH2_BEARER.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_duphandle.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_escape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_getinfo.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_pause.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_perform.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_recv.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_reset.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_send.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_setopt.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_strerror.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_easy_unescape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_escape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_formadd.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_formfree.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_formget.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_free.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_getdate.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_getenv.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_global_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_global_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_global_init_mem.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_mprintf.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_add_handle.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_assign.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_fdset.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_info_read.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_perform.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_remove_handle.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_setopt.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_socket.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_socket_action.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_strerror.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_timeout.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_multi_wait.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_cleanup.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_init.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_setopt.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_share_strerror.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_slist_append.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_slist_free_all.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_strequal.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_unescape.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_version.3.gz exists in filesystem
    curl: /usr/share/man/man3/curl_version_info.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-easy.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-errors.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-multi.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-share.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-symbols.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl-tutorial.3.gz exists in filesystem
    curl: /usr/share/man/man3/libcurl.3.gz exists in filesystem
    libassuan: /usr/bin/libassuan-config exists in filesystem
    libassuan: /usr/include/assuan.h exists in filesystem
    libassuan: /usr/lib/libassuan.so exists in filesystem
    libassuan: /usr/lib/libassuan.so.0 exists in filesystem
    libassuan: /usr/lib/libassuan.so.0.5.0 exists in filesystem
    libassuan: /usr/share/aclocal/libassuan.m4 exists in filesystem
    libassuan: /usr/share/info/assuan.info.gz exists in filesystem
    gpgme: /usr/bin/gpgme-config exists in filesystem
    gpgme: /usr/bin/gpgme-tool exists in filesystem
    gpgme: /usr/include/gpgme.h exists in filesystem
    gpgme: /usr/lib/libgpgme-pthread.so exists in filesystem
    gpgme: /usr/lib/libgpgme-pthread.so.11 exists in filesystem
    gpgme: /usr/lib/libgpgme-pthread.so.11.13.3 exists in filesystem
    gpgme: /usr/lib/libgpgme.so exists in filesystem
    gpgme: /usr/lib/libgpgme.so.11 exists in filesystem
    gpgme: /usr/lib/libgpgme.so.11.13.3 exists in filesystem
    gpgme: /usr/share/aclocal/gpgme.m4 exists in filesystem
    gpgme: /usr/share/common-lisp/source/gpgme/gpgme-package.lisp exists in filesystem
    gpgme: /usr/share/common-lisp/source/gpgme/gpgme.asd exists in filesystem
    gpgme: /usr/share/common-lisp/source/gpgme/gpgme.lisp exists in filesystem
    gpgme: /usr/share/info/gpgme.info-1.gz exists in filesystem
    gpgme: /usr/share/info/gpgme.info-2.gz exists in filesystem
    gpgme: /usr/share/info/gpgme.info.gz exists in filesystem
    archlinux-keyring: /usr/share/pacman/keyrings/archlinux-revoked exists in filesystem
    archlinux-keyring: /usr/share/pacman/keyrings/archlinux-trusted exists in filesystem
    archlinux-keyring: /usr/share/pacman/keyrings/archlinux.gpg exists in filesystem
    pacman: /usr/bin/bacman exists in filesystem
    pacman: /usr/bin/checkupdates exists in filesystem
    pacman: /usr/bin/cleanupdelta exists in filesystem
    pacman: /usr/bin/makepkg exists in filesystem
    pacman: /usr/bin/makepkg-template exists in filesystem
    pacman: /usr/bin/paccache exists in filesystem
    pacman: /usr/bin/pacdiff exists in filesystem
    pacman: /usr/bin/paclist exists in filesystem
    pacman: /usr/bin/paclog-pkglist exists in filesystem
    pacman: /usr/bin/pacman exists in filesystem
    pacman: /usr/bin/pacman-db-upgrade exists in filesystem
    pacman: /usr/bin/pacman-key exists in filesystem
    pacman: /usr/bin/pacman-optimize exists in filesystem
    pacman: /usr/bin/pacscripts exists in filesystem
    pacman: /usr/bin/pacsearch exists in filesystem
    pacman: /usr/bin/pacsort exists in filesystem
    pacman: /usr/bin/pactree exists in filesystem
    pacman: /usr/bin/pkgdelta exists in filesystem
    pacman: /usr/bin/rankmirrors exists in filesystem
    pacman: /usr/bin/repo-add exists in filesystem
    pacman: /usr/bin/repo-elephant exists in filesystem
    pacman: /usr/bin/repo-remove exists in filesystem
    pacman: /usr/bin/testdb exists in filesystem
    pacman: /usr/bin/testpkg exists in filesystem
    pacman: /usr/bin/updpkgsums exists in filesystem
    pacman: /usr/bin/vercmp exists in filesystem
    pacman: /usr/include/alpm.h exists in filesystem
    pacman: /usr/include/alpm_list.h exists in filesystem
    pacman: /usr/lib/libalpm.so exists in filesystem
    pacman: /usr/lib/libalpm.so.9 exists in filesystem
    pacman: /usr/lib/libalpm.so.9.0.1 exists in filesystem
    pacman: /usr/lib/pkgconfig/libalpm.pc exists in filesystem
    pacman: /usr/share/bash-completion/completions/makepkg exists in filesystem
    pacman: /usr/share/bash-completion/completions/pacman exists in filesystem
    pacman: /usr/share/bash-completion/completions/pacman-key exists in filesystem
    pacman: /usr/share/locale/ar/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ar/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ar/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/ca/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ca/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ca/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/cs/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/cs/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/cs/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/da/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/da/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/da/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/de/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/de/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/de/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/el/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/el/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/el/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/en_GB/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/en_GB/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/en_GB/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/eo/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/es/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/es/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/es/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/es_419/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/es_419/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/es_419/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/fa/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/fi/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/fi/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/fi/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/fr/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/fr/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/fr/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/gl/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/gl/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/gl/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/hr/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/hr/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/hr/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/hu/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/hu/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/hu/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/id/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/id/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/id/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/it/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/it/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/it/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/ja/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ja/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ja/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/kk/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/kk/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/kk/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/ko/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ko/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ko/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/ko_KR/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ko_KR/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ko_KR/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/lt/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/lt/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/lt/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/nb/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/nb/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/nb/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/nl/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/nl/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/nl/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/pl/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/pl/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/pl/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/pt/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/pt/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/pt/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/pt_BR/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/pt_BR/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/pt_BR/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/ro/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ro/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ro/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/ru/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/ru/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/ru/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/sk/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/sk/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/sk/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/sl/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/sl/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/sl/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/sr/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/sr/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/sr/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/sr@latin/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/sr@latin/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/sr@latin/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/sv/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/sv/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/sv/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/tr/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/tr/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/tr/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/uk/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/uk/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/uk/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/vi/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/zh_CN/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/zh_CN/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/zh_CN/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/locale/zh_TW/LC_MESSAGES/libalpm.mo exists in filesystem
    pacman: /usr/share/locale/zh_TW/LC_MESSAGES/pacman-scripts.mo exists in filesystem
    pacman: /usr/share/locale/zh_TW/LC_MESSAGES/pacman.mo exists in filesystem
    pacman: /usr/share/man/man1/makepkg-template.1.gz exists in filesystem
    pacman: /usr/share/man/man3/libalpm.3.gz exists in filesystem
    pacman: /usr/share/man/man5/PKGBUILD.5.gz exists in filesystem
    pacman: /usr/share/man/man5/makepkg.conf.5.gz exists in filesystem
    pacman: /usr/share/man/man5/pacman.conf.5.gz exists in filesystem
    pacman: /usr/share/man/man8/makepkg.8.gz exists in filesystem
    pacman: /usr/share/man/man8/pacman-key.8.gz exists in filesystem
    pacman: /usr/share/man/man8/pacman.8.gz exists in filesystem
    pacman: /usr/share/man/man8/pactree.8.gz exists in filesystem
    pacman: /usr/share/man/man8/pkgdelta.8.gz exists in filesystem
    pacman: /usr/share/man/man8/repo-add.8.gz exists in filesystem
    pacman: /usr/share/man/man8/repo-remove.8.gz exists in filesystem
    pacman: /usr/share/man/man8/vercmp.8.gz exists in filesystem
    pacman: /usr/share/pacman/PKGBUILD-split.proto exists in filesystem
    pacman: /usr/share/pacman/PKGBUILD-vcs.proto exists in filesystem
    pacman: /usr/share/pacman/PKGBUILD.proto exists in filesystem
    pacman: /usr/share/pacman/proto.install exists in filesystem
    pacman: /usr/share/vim/vimfiles/syntax/PKGBUILD.vim exists in filesystem
    pacman: /usr/share/zsh/site-functions/_pacman exists in filesystem
    Errors occurred, no packages were upgraded.

  • [SOLVED] tmux bash completion

    Hey,
    Looking through internet, I didn't find any solution. I want to be able to hit Tab on a terminal to complete my commands, like I do a million times a day.
    Except it doesn't work on tmux, Tab just does nothing at all.
    Here is my tmux.conf :
    #Make zsh default shell to use
    # set-option -g default-shell /bin/zsh
    # use UTF8
    set -g utf8
    set-window-option -g utf8 on
    # make tmux display things in 256 colors
    set -g default-terminal "screen-256color"
    # set scrollback history
    set -g history-limit 3000
    # shorten command delay
    set -sg escape-time 1
    # set window and pane index to 1 (0 by default)
    set-option -g base-index 1
    setw -g pane-base-index 1
    # reload ~/.tmux.conf
    bind -n C-q source-file ~/.tmux.conf \; display "Reloaded!"
    # Select and open URL
    bind -n C-u run tmux-url-select
    unbind-key Tab
    # split window horizontally and vertically
    bind -n C-v split-window -h
    bind -n C-h split-window -v
    # Make the current window the first window
    bind -n C-T swap-window -t 1
    # map Vi movement keys as pane movement keys
    bind -n C-Left select-pane -L
    bind -n C-Down select-pane -D
    bind -n C-Up select-pane -U
    bind -n C-Right select-pane -R
    # and use C-h and C-l to cycle thru panes
    bind -n C-o select-window -t :-
    bind -n C-i select-window -t :+
    # resize panes using PREFIX H, J, K, L
    bind -n C-N resize-pane -L 5
    bind -n C-J resize-pane -D 5
    bind -n C-K resize-pane -U 5
    bind -n C-L resize-pane -R 5
    # explicitly disable mouse control
    setw -g mode-mouse off
    set -g mouse-select-pane on
    set -g mouse-resize-pane on
    set -g mouse-select-window on
    # Copy & Paste
    # provide access to the clipboard for pbpaste, pbcopy
    #set-option -g default-command "reattach-to-user-namespace -l zsh"
    set-window-option -g automatic-rename on
    # use vim keybindings in copy mode
    setw -g mode-keys vi
    # setup 'v' to begin selection as in Vim
    bind-key -t vi-copy v begin-selection
    bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
    # update default binding of 'Enter' to also use copy-pipe
    unbind -t vi-copy Enter
    bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
    bind y run 'tmux save-buffer - | reattach-to-user-namespace pbcopy '
    bind C-y run 'tmux save-buffer - | reattach-to-user-namespace pbcopy '
    # set some pretty colors
    #set pane colors - hilight the active pane
    set-option -g pane-border-fg colour235 #base02
    set-option -g pane-active-border-fg red #base01
    # colorize messages in the command line
    set-option -g message-bg black #base02
    set-option -g message-fg brightred #orange
    # Status Bar
    set-option -g status off # turn the status bar on
    set -g status-utf8 on # set utf-8 for the status bar
    set -g status-interval 5 # set update frequencey (default 15 seconds)
    set -g status-justify centre # center window list for clarity
    # set-option -g status-position top # position the status bar at top of screen
    # visual notification of activity in other windows
    setw -g monitor-activity off
    set -g visual-activity off
    # set color for status bar
    set-option -g status-bg colour0
    set-option -g status-fg yellow #yellow
    set-option -g status-attr dim
    # set window list colors - red for active and cyan for inactive
    set-window-option -g window-status-fg brightblue #base0
    set-window-option -g window-status-bg colour0
    #set-window-option -g window-status-attr dim
    set-window-option -g window-status-current-fg red #orange
    set-window-option -g window-status-current-bg colour235
    set-window-option -g window-status-current-attr bright
    # show session name, window & pane number, date and time on right side of
    # status bar
    #set -g status-right-length 60
    #set -g status-right "#[fg=blue]#S #I:#P #[fg=yellow]:: %d %b %Y #[fg=green]:: %l:%M %p :: #(date -u | awk '{print $4}')::"
    Anyone with a solution ?
    Thanks !
    Last edited by Kolibry (2014-10-19 20:56:04)

    I restarted the server. I also tried to skip "set -sg escape-time 1". My current shell is bash, and I can't tell you what progress I've made because I haven't made any
    EDIT : I didn't understand "rc files", I just get it now. Here is my bashrc :
    export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel'
    export EDITOR=vim
    export LIBVA_DRIVER_NAME=vdpau
    export VDPAU_DRIVER=r600
    export PATH=$PATH:/home/kolibry/Scripts
    source tmux-completion.sh
    source tmux-bash-completion.sh
    ansiblocks
    bind 'set completion-ignore-case on'
    if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
    fi
    xhost +local:root > /dev/null 2>&1
    complete -cf sudo
    shopt -s cdspell
    shopt -s checkwinsize
    shopt -s cmdhist
    shopt -s dotglob
    shopt -s expand_aliases
    shopt -s extglob
    shopt -s histappend
    shopt -s hostcomplete
    shopt -s nocaseglob
    export HISTSIZE=10000
    export HISTFILESIZE=${HISTSIZE}
    export HISTCONTROL=ignoreboth
    alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
    alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
    alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
    alias grep='grep --color=tty -d skip'
    alias cp="cp -i" # confirm before overwriting something
    alias df='df -h' # human-readable sizes
    alias free='free -m' # show sizes in MB
    alias np='vim PKGBUILD'
    alias starwars="telnet towel.blinkenlights.nl"
    alias inxi="inxi -Fxzc2"
    alias weechat="weechat-curses"
    alias news='newsbeuter'
    alias zik="mpd && ncmpcpp"
    alias version="lsb_release -si -sr -sc"
    alias fdisk="sudo fdisk -l"
    alias formater="sudo mkfs.vfat -F 32"
    ### Dropbox ###
    #alias ./dropbox_uploader.sh upload="upload dropbox"
    #alias ./dropbox_uploader.sh download="download dropbox"
    conf() {
    case $1 in
    bspwm) vim ~/.config/bspwm/bspwmrc ;;
    sxhkd) vim ~/.config/sxhkd/sxhkdrc ;;
    conky) vim ~/.conkyrc ;;
    menu) vim ~/.config/openbox/menu.xml ;;
    mpd) vim ~/.mpd/mpd.conf ;;
    mutt) vim ~/.mutt/muttrc ;;
    ncmpcpp) vim ~/.ncmpcpp/config ;;
    moc) sudo vim /home/kolibry/.moc/config ;;
    moctheme) sudo vim /home/kolibry/.moc/themes/kolibry_theme ;;
    weechat) vim ~/.weechat/weechat.conf ;;
    pacman) sudo vim /etc/pacman.conf ;;
    mirrorlist) vim /etc/pacman/mirrorlist ;;
    termite) vim ~/.config/termite/config ;;
    ranger) vim ~/.config/ranger/rc.conf ;;
    rifle) vim ~/.config/ranger/rifle.conf ;;
    tmux) vim ~/.tmux.conf ;;
    vim) vim ~/.vimrc ;;
    compton) vim ~/.config/compton.conf ;;
    xinit) vim ~/.xinitrc ;;
    xresources) vim ~/.Xresources && xrdb ~/.Xresources ;;
    zathura) vim ~/.config/zathura/zathurarc ;;
    tint2) vim ~/.config/tint2/tint2rc ;;
    bashrc) vim ~/.bashrc && source ~/.bashrc ;;
    dwb) vim ~/.config/dwb/default/quickmarks ;;
    grub) sudo vim /etc/default/grub.cfg ;;
    mupen64plus) vim ~/.config/mupen64plus/mupen64plus.cfg ;;
    dunst) vim ~/.config/dunst/dunstrc ;;
    *) echo "Unknown application: $1" ;;
    esac
    function mkdircd () { mkdir -p "$@" && eval cd "\"\$$#\""; }
    function cdl () { cd "$@" && ls; }
    alias dpi="xdpyinfo | grep resolution"
    alias mocp="mocp -T kolibry_theme"
    ### Gestion du système ###
    # Créer une liste des paquets installés :
    alias pkglist='comm -23 <(pacman -Qeq|sort) <(pacman -Qmq|sort) > pkglist'
    # Créer une liste des paquets AUR installés :
    alias pkglist-aur='pacman -Qqm > pkglist-aur'
    # Restaurer la liste des paquets :
    alias installpkglist='yaourt -S $(< pkglist)'
    # Mise à jour des miroirs et mettre à jour le système :
    alias update='sudo pacman-mirrors -g && sudo pacman -Syu'
    #Mettre à jour le système :
    alias maj='sudo pacman -Syu'
    # Installer un paquet :
    alias installer='sudo pacman -S'
    # Effacer un paquet :
    alias supprimer='sudo pacman -R'
    # Paquets orphelins :
    alias orphans='sudo pacman -Qdt'
    # Infos paquet :
    alias info='sudo pacman -Si'
    # Rafraichissement de la liste des paquets:
    alias refresh='sudo pacman -Syy'
    # cacheclean -v 2 ,deletes all but the last 2 versions of installed packages the pacman cache:
    alias c-c='sudo cacheclean -v 2'
    # yaourt -Syu by typing yaur :
    alias majaur='yaourt -Syu --aur'
    # yaourt -S by typing yS :
    alias install='yaourt -S'
    # yaourt -Rsn , which fully deletes packages - see above :
    alias remove='yaourt -Rsn'
    # Date dernière maj
    alias lastup='echo -e "\e[1;31mLast Upgraded:\e[0m " ; sort /var/log/pacman.log | tail -n 50 | grep upgraded | cut -c 1-18 | uniq -d'
    #Détails dernière maj
    alias lastupd='echo -e "\e[1;31mLast upgraded:\e[0m " ; cat /var/log/pacman.log | grep upgraded | tail -n 40'
    # Recharger URxvt config
    alias x='xrdb .Xresources'
    # Convertir vidéo youtube en fichier audio
    alias ogg='youtube-dl -x --audio-format vorbis --audio-quality 0'
    # mpv en couleurs
    alias mpv='mpv --msg-module'
    # Nettoyer le terminal
    alias c='clear'
    #Restaurer tmux
    alias res='sh /home/kolibry/Scripts/restoretmux'
    # Eteindre le PC
    alias stop='shutdown now'
    # Ecran externe
    alias externe='xrandr --output VGA-0 --mode 1600x900 --output LVDS --off'
    # Ecran interne
    alias interne='xrandr --output LVDS --mode 1366x768 --output VGA-0 --off'
    # Touchpad
    alias touchpadon='synclient TouchpadOff=0'
    alias touchpadoff='synclient TouchpadOff=1'
    # Test scroll rapidité terminal
    alias testterminal='for i in {0..9999}; do echo -n "------$i-"; done'
    ##fun&entertaining
    alias insults='wget http://www.randominsults.net -O - 2>/dev/null | grep \<strong\> | sed "s;^.*<i>\(.*\)</i>.*$;\1;";'
    alias matrix='echo -e "\e[32m"; while :; do for i in {1..16}; do r="$(($RANDOM % 2))"; if [[ $(($RANDOM % 5)) == 1 ]]; then if [[ $(($RANDOM % 4)) == 1 ]]; then v+="\e[1m $r "; else v+="\e[2m $r "; fi; else v+=" "; fi; done; echo -e "$v"; v=""; done'
    alias matrix2='echo -e "\e[31m"; while $t; do for i in `seq 1 30`;do r="$[($RANDOM % 2)]";h="$[($RANDOM % 4)]";if [ $h -eq 1 ]; then v="\e[1m $r";else v="\e[2m $r";fi;v2="$v2 $v";done;echo -e $v2;v2="";done;'
    alias matrix3='COL=$(( $(tput cols) / 2 )); clear; tput setaf 2; while :; do tput cup $((RANDOM%COL)) $((RANDOM%COL)); printf "%$((RANDOM%COL))s" $((RANDOM%2)); done'
    alias matrix4='echo -ne "\e[32m" ; while true ; do echo -ne "\e[$(($RANDOM % 2 + 1))m" ; tr -c "[:print:]" " " < /dev/urandom | dd count=1 bs=50 2> /dev/null ; done'
    alias matrix5='tr -c "[:digit:]" " " < /dev/urandom | dd cbs=$COLUMNS conv=lcase,unblock | GREP_COLOR="1;32" grep --color "[^ ]"'
    alias colorrainbow='yes "$(seq 1 255)" | while read i; do printf "\x1b[48;5;${i}m\n"; sleep .01; done'
    alias roulette='[ $[ $RANDOM % 6 ] == 0 ] && echo Die || echo Live' # command line Russian roulette
    alias einsteiny='A=1;B=100;X=0;C=0;N=$[$RANDOM%$B+1];until [ $X -eq $N ];do read -p "N between $A and $B. Guess? " X;C=$(($C+1));A=$(($X<$N?$X:$A));B=$(($X>$N?$X:$B));done;echo "Took you $C tries, Einstein";' # numbers guessing game
    alias etchasketch='c=12322123;x=20;y=20;while read -sn1 p;do k=${c:(p-1)*2:2};let x+=$((k/10-2));let y+=$((k%10-2));echo -en \\033[$y\;"$x"HX;done' # use the 1 2 3 and 4 keys to move the cursor around the screen (It's an etch-a-sketch for your terminal!)
    alias excuses='echo `telnet bofh.jeffballard.us 666 2>/dev/null` |grep --color -o "Your excuse is:.*$"' # excuses
    alias freechess='telnet fics.freechess.org 5000' # connects to a telnet server for free internet chess
    alias funfacts='wget http://www.randomfunfacts.com -O - 2>/dev/null | grep \<strong\> | sed "s;^.*<i>\(.*\)</i>.*$;\1;";'
    alias 99bottles='x="bottles of beer";y="on the wall";for b in {99..1};do echo "$b $x $y, $b $x. Take one down pass it around, $(($b-1)) $x $y"; sleep 3;done'
    alias addictive='count="1" ; while true ; do read next ; if [[ "$next" = "$last" ]] ; then count=$(($count+1)) ; echo "$count" ; else count="1" ; echo $count ; fi ; last="$next" ; done' # simple addicting bash game
    alias busy='for i in `seq 0 100`;do timeout 6 dialog --gauge "Install..." 6 40 "$i";done' # pretend to be busy in office to enjoy a cup of coffee
    alias busy2='my_file=$(find /usr/include -type f | sort -R | head -n 1); my_len=$(wc -l $my_file | awk "{print $1}"); let "r = $RANDOM % $my_len" 2>/dev/null; vim +$r $my_file'
    alias busy3='cat /dev/urandom | hexdump -C | highlight ca fe 3d 42 e1 b3 ae f8 | perl -MTime::HiRes -pnE "Time::HiRes::usleep(rand()*1000000)"'
    ### Fonction scrot + upload ###
    imgur-upl() {
    curl -s -F image=@"$1" -F "key=1913b4ac473c692372d108209958fd15" \
    http://api.imgur.com/2/upload.xml | grep -Eo "<original>(.)*</original>" \
    | grep -Eo "http://i.imgur.com/[^<]*"
    # Back up file
    bu() {
    cp -a "$1" "$1.$(date +%d.%m.%y-%H:%M)"
    # ex - archive extractor
    # usage: ex <file>
    ex ()
    if [ -f $1 ] ; then
    case $1 in
    *.tar.bz2) tar xjf $1 ;;
    *.tar.gz) tar xzf $1 ;;
    *.bz2) bunzip2 $1 ;;
    *.rar) unrar x $1 ;;
    *.gz) gunzip $1 ;;
    *.tar) tar xf $1 ;;
    *.tbz2) tar xjf $1 ;;
    *.tgz) tar xzf $1 ;;
    *.zip) unzip $1 ;;
    *.Z) uncompress $1;;
    *.7z) 7z x $1 ;;
    *) echo "'$1' cannot be extracted via ex()" ;;
    esac
    else
    echo "'$1' is not a valid file"
    fi
    ##### Couleurs prompt ####
    #Black \e[0;30m
    #Blue \e[0;34m
    #Green \e[0;32m
    #Cyan \e[0;36m
    #Red \e[0;31m
    #Purple \e[0;35m
    #Brown \e[0;33m
    #Gray \e[0;37m
    #Dark Gray \e[1;30m
    #Light Blue \e[1;34m
    #Light Green \e[1;32m
    #Light Cyan \e[1;36m
    #Light Red \e[1;31m
    #Light Purple \e[1;35m
    #Yellow \e[1;33m
    #White \e[1;37m
    #NC='\e[0m' # No Color
    # background colors
    #RED='\e[41m'
    #BLUE='\e[44m'
    #CYAN='\e[46m'
    #GREEN='\e[42m'
    #YELLOW='\e[43m'
    # prompt
    #PS1="\[\e[0;33m\]┌─[\[\e[1;31m\u\e[0;33m\]]──[\[\e[0;34m\]${HOSTNAME%%.*}\[\e[0;33m\]]\[\e[0;32m\]:\w$\[\e[0;33m\]\n\[\e[0;33m\]└──\[\e[0;33m\]>>\[\e[0m\]"
    #prompt essai
    PS1="\[\e[0;34m\]┌─[\[\e[0;31mo_o\e[0;34m\]]──[\[\e[0;33m\]\w\[\e[0;34m\]]\[\e[0;34m\]\n\[\e[0;34m\]└──\[\e[0;34m\][\[\e[0m\]"
    # prompt robot
    #PS1='┌─[\e[0;31mo_o\e[m] ─ [\e[0;36m\w\e[m]\n└─|'
    BROWSER=/usr/bin/xdg-open
    ### Man pages en couleur ###
    man() {
    env LESS_TERMCAP_mb=$(printf "\e[1;31m") \
    LESS_TERMCAP_md=$(printf "\e[1;31m") \
    LESS_TERMCAP_me=$(printf "\e[0m") \
    LESS_TERMCAP_se=$(printf "\e[0m") \
    LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
    LESS_TERMCAP_ue=$(printf "\e[0m") \
    LESS_TERMCAP_us=$(printf "\e[1;32m") \
    man "$@"
    Last edited by Kolibry (2014-10-19 20:40:15)

  • Zsh completion for pacman??

    I've been looking for that all day long, I even tried to do my own but I'm not good using zstyle. I found something in a mailing list, and it was suposed to have attached the files to do it (for testing), but the mailing list didn't even show me the atachement, so... anyone knows how to achieve it?

    Lone_Wolf wrote:
    try
    pacman -S bash-completion
    It extends the completion abiliites for bash a lot.
    1 of the benefits of it is that <tab> works for package names.
    What does that have to do with zsh?

Maybe you are looking for

  • How do I get rid of horizontal lines on mac osx 10.7?

    I have several horizontal lines on the screen of my Laptop.  It is a PowerBook ios 7.0.5.  How do I eliminate the lines?

  • Classical Music Fix?

    Has anybody discovered a way in which itunes 7 might help collectors of classical music (which is generally catalogued by composer rather than artist) Up until now, if Classical music is going to be browsed along with other types of music, it has bee

  • Lightroom not opening photoshop even after a reinstall

    Lightroom is not opening photoshop even after I have reinstalled  PS CC

  • Activity monitor keeps hanging and hanging..

    Hi all there! I've the problem that this application just wont work, whatever I'm doing if I start the Activity monitor the application opens nothing happens and a few seconds later the bleachball of death appears and the application just freezes and

  • Where is the power button?

    HI I got a new iMac 27" and the instructions are in Spanish because I live in Spain but I don't read Spanish so can some one help Where is the power button or how do I switch it on? Ta