| Server IP : 216.92.14.13 / Your IP : 216.73.217.126 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /etc/bash_completion.d/unison/ |
Upload File : |
_unison_2_40_102() {
local cur profiles
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
# Get option with unison -help | grep "^ -" | cut -f 3 -d " "
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-addprefsto -addversionno -auto -backup \
-backupcurrent -backupcurrentnot -backupdir -backuplocation -backupnot \
-backupprefix -backups -backupsuffix -batch -confirmbigdeletes \
-confirmmerge -contactquietly -debug -doc -dumbtty -fastcheck -follow \
-force -forcepartial -group -height -host -ignore -ignorecase \
-ignorelocks -ignorenot -immutable -immutablenot -key -killserver -label \
-log -logfile -maxbackups -maxthreads -merge -mountpoint -numericids \
-owner -path -perms -prefer -preferpartial -pretendwin -repeat -retry \
-root -rootalias -rsrc -rsync -selftest -servercmd -showarchive -silent \
-socket -sortbysize -sortfirst -sortlast -sortnewfirst -sshargs -sshcmd \
-terse -testserver -times -ui -version -xferbycopying' -- "$cur" ) )
else
if [ -d $HOME/.unison ]; then
for i in $HOME/.unison/*.prf; do
if test -e $i; then
profiles="$profiles $(basename ${i%.prf})"
fi
done
fi
COMPREPLY=( $( compgen -W '$profiles' -- $cur ) );
fi
return 0
}
complete -o plusdirs -F _unison_2_40_102 unison-2.40.102