403Webshell
Server IP : 82.208.35.60  /  Your IP : 216.73.216.238
Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31
System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64
User : studiokobylisy_cz ( 1008)
PHP Version : 7.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/local/share/bash-completion/completions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/share/bash-completion/completions/rdiff-backup
# /etc/bash_completion.d/rdiff-backup - bash-completion for rdiff-backup
# (c) 2022 Eric Lavarde
#
# Developed for rdiff-backup 2.2+
# This completion relies on the 'complete' action of rdiff-backup

_rdiff_backup_complete()
{
	oldIFS="${IFS}"
	# only a newline can separate options
	IFS='
'
	COMPREPLY=( $($1 complete --cword ${COMP_CWORD} --unique -- "${COMP_WORDS[@]}") )
	IFS="${oldIFS}"
	#echo ${COMPREPLY[@]} >&2
	if [[ ${#COMPREPLY[@]} -gt 0 ]] && [[ "${COMPREPLY[-1]}" == ::*:: ]]
	then
		action=$(echo "${COMPREPLY[-1]}" | tr -d ':')
		unset COMPREPLY[-1]
		COMPREPLY+=( $(compgen -A ${action} -- "${COMP_WORDS[COMP_CWORD]}") )
	fi
}

# 'rdiff-backup complete' takes care of the sorting, and this way, the options
# are listed, followed by possible filenames
complete -F _rdiff_backup_complete -o filenames -o nosort rdiff-backup

Youez - 2016 - github.com/yon3zu
LinuXploit