亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bash_completion

?? android-w.song.android.widget
??
?? 第 1 頁 / 共 5 頁
字號:
_complete(){	local cur prev options	COMPREPLY=()	cur=`_get_cword`	prev=${COMP_WORDS[COMP_CWORD-1]}	case $prev in		-o)			options="default dirnames filenames"			[ -n "$bash205b" ] && options="$options nospace"			[ -n "$bash3" ] && options="$options bashdefault plusdirs"			COMPREPLY=( $( compgen -W "$options" -- $cur ) )			return 0			;;		-A)			COMPREPLY=( $( compgen -W 'alias arrayvar binding \				builtin command directory disabled enabled \				export file function group helptopic hostname \				job keyword running service setopt shopt \				signal stopped user variable' -- $cur ) )			return 0			;;		-C)			COMPREPLY=( $( compgen -A command -- $cur ) )			return 0			;;		-F)			COMPREPLY=( $( compgen -A function -- $cur ) )			return 0			;;		-@(p|r))			COMPREPLY=( $( complete -p | sed -e 's|.* ||' | \					grep "^$cur" ) )			return 0			;;	esac	if [[ "$cur" == -* ]]; then		# relevant options completion		options="-a -b -c -d -e -f -g -j -k -s -v -u -A -G -W -P -S -X -F -C"		[ -n "$bash205" ] && options="$options -o"		COMPREPLY=( $( compgen -W "$options" -- $cur ) )	else		COMPREPLY=( $( compgen -A command -- $cur ) )	fi}complete -F _complete complete# start of section containing completion functions for external programs# a little help for FreeBSD ports users[ $UNAME = FreeBSD ] && complete -W 'index search fetch fetch-list \	extract patch configure build install reinstall \	deinstall clean clean-depends kernel buildworld' make# This completes on a list of all available service scripts for the# 'service' command and/or the SysV init.d directory, followed by# that script's available commands#{ have service || [ -d /etc/init.d/ ]; } &&_service(){	local cur sysvdir	COMPREPLY=()	prev=${COMP_WORDS[COMP_CWORD-1]}	cur=`_get_cword`	# don't complete for things like killall, ssh and mysql if it's	# the standalone command, rather than the init script	[[ ${COMP_WORDS[0]} != @(*init.d/!(functions|~)|service) ]] && return 0	# don't complete past 2nd token	[ $COMP_CWORD -gt 2 ] && return 0	[ -d /etc/rc.d/init.d ] && sysvdir=/etc/rc.d/init.d \				|| sysvdir=/etc/init.d	if [[ $COMP_CWORD -eq 1 ]] && [[ $prev == "service" ]]; then		_services	else		COMPREPLY=( $( compgen -W '`sed -ne "y/|/ /; \				s/^.*Usage.*{\(.*\)}.*$/\1/p" \				$sysvdir/${prev##*/} 2>/dev/null`' -- $cur ) )	fi	return 0} &&complete -F _service service[ -d /etc/init.d/ ] && complete -F _service $default \	$(for i in /etc/init.d/*; do echo ${i##*/}; done)# chown(1) completion#_chown(){	local cur	cur=`_get_cword`	# options completion	if [[ "$cur" == -* ]]; then		COMPREPLY=( $( compgen -W '-c -h -f -R -v --changes \		--dereference --no-dereference --from= --silent --quiet \		--reference= --recursive --verbose --help --version' -- $cur ) )	else		_count_args		case $args in			1)				_usergroup				;;			*)				_filedir				;;		esac	fi}complete -F _chown $filenames chown# chgrp(1) completion#_chgrp(){	local cur prev	COMPREPLY=()	cur=`_get_cword`	cur=${cur//\\\\/}	prev=${COMP_WORDS[COMP_CWORD-1]}	# options completion	if [[ "$cur" == -* ]]; then		COMPREPLY=( $( compgen -W '-c -h -f -R -v --changes \		--dereference --no-dereference --silent --quiet \		--reference= --recursive --verbose --help --version' -- $cur ) )		return 0	fi	# first parameter on line or first since an option?	if [ $COMP_CWORD -eq 1 ] && [[ "$cur" != -* ]] || \	   [[ "$prev" == -* ]] && [ -n "$bash205" ]; then		local IFS=$'\n'		COMPREPLY=( $( compgen -g $cur 2>/dev/null ) )	else		_filedir || return 0	fi	return 0}complete -F _chgrp $filenames chgrp# umount(8) completion. This relies on the mount point being the third# space-delimited field in the output of mount(8)#_umount(){	local cur	COMPREPLY=()	cur=`_get_cword`	OLDIFS="$IFS"	IFS="\n"	COMPREPLY=( $( compgen -W '$( mount | cut -d" " -f 3 )' -- $cur ) )	IFS="$OLDIFS"	return 0}complete -F _umount $dirnames umount# mount(8) completion. This will pull a list of possible mounts out of# /etc/{,v}fstab, unless the word being completed contains a ':', which# would indicate the specification of an NFS server. In that case, we# query the server for a list of all available exports and complete on# that instead.#_mount(){       local cur i sm host	COMPREPLY=()	cur=`_get_cword`	[[ "$cur" == \\ ]] && cur="/"	for i in {,/usr}/{,s}bin/showmount; do [ -x $i ] && sm=$i && break; done	if [ -n "$sm" ] && [[ "$cur" == *:* ]]; then		COMPREPLY=( $( $sm -e ${cur%%:*} | sed 1d | \			       grep ^${cur#*:} | awk '{print $1}' ) )	elif [[ "$cur" == //* ]]; then		host=${cur#//}		host=${host%%/*}		if [ -n "$host" ]; then			COMPREPLY=( $( compgen -W "$( echo $( smbclient -d 0 -NL $host 2>/dev/null|			sed -ne '/^['"$'\t '"']*Sharename/,/^$/p' |			sed -ne '3,$s|^[^A-Za-z]*\([^'"$'\t '"']*\).*$|//'$host'/\1|p' ) )" -- "$cur" ) )		fi	elif [ -r /etc/vfstab ]; then		# Solaris		COMPREPLY=( $( awk '! /^[ \t]*#/ {if ($3 ~ /\//) print $3}' \				/etc/vfstab | grep "^$cur" ) )	elif [ ! -e /etc/fstab ]; then		# probably Cygwin		COMPREPLY=( $( mount | awk '! /^[ \t]*#/ {if ($3 ~ /\//) print $3}' \				 | grep "^$cur" ) )	else		# probably Linux		COMPREPLY=( $( awk '! /^[ \t]*#/ {if ($2 ~ /\//) print $2}' \				/etc/fstab | grep "^$cur" ) )	fi	return 0}complete -F _mount $default $filenames mount# Linux rmmod(8) completion. This completes on a list of all currently# installed kernel modules.#have rmmod && {_rmmod(){	local cur	COMPREPLY=()	cur=`_get_cword`	COMPREPLY=( $( /sbin/lsmod | \		  awk '{if (NR != 1 && $1 ~ /^'$cur'/) print $1}' 2>/dev/null ))	return 0}complete -F _rmmod rmmod# Linux insmod(8), modprobe(8) and modinfo(8) completion. This completes on a# list of all available modules for the version of the kernel currently# running.#_insmod(){	local cur prev modpath	COMPREPLY=()	cur=`_get_cword`	prev=${COMP_WORDS[COMP_CWORD-1]}	# behave like lsmod for modprobe -r	if [ $1 = "modprobe" ] &&	   [ "${COMP_WORDS[1]}" = "-r" ]; then		COMPREPLY=( $( /sbin/lsmod | \				awk '{if (NR != 1 && $1 ~ /^'$cur'/) print $1}' ) )		return 0	fi	# do filename completion if we're giving a path to a module	if [[ "$cur" == */* ]]; then		_filedir '@(?(k)o?(.gz))'		return 0	fi	if [ $COMP_CWORD -gt 1 ] && 	   [[ "${COMP_WORDS[COMP_CWORD-1]}" != -* ]]; then		# do module parameter completion		COMPREPLY=( $( /sbin/modinfo -p ${COMP_WORDS[1]} 2>/dev/null | \		       awk '{if ($1 ~ /^parm:/ && $2 ~ /^'$cur'/) { print $2 } \			else if ($1 !~ /:/ && $1 ~ /^'$cur'/) { print $1 }}' ) )	else		_modules $(uname -r)	fi	return 0}complete -F _insmod $filenames insmod modprobe modinfo}# man(1) completion#[ $UNAME = GNU -o $UNAME = Linux -o $UNAME = Darwin \  -o $UNAME = FreeBSD -o $UNAME = SunOS -o $UNAME = Cygwin \  -o $UNAME = OpenBSD ] &&_man(){	local cur prev sect manpath UNAME	COMPREPLY=()	cur=`_get_cword`	prev=${COMP_WORDS[COMP_CWORD-1]}	_expand || return 0	# default completion if parameter contains /	if [[ "$cur" == */* ]]; then		_filedir		return 0	fi	UNAME=$( uname -s )	# strip OS type and version under Cygwin	UNAME=${UNAME/CYGWIN_*/Cygwin}	if [ $UNAME = GNU -o $UNAME = Linux -o $UNAME = FreeBSD \	     -o $UNAME = Cygwin ]; then		manpath=$( manpath 2>/dev/null || command man --path )	else		manpath=$MANPATH	fi	if [ -z "$manpath" ]; then		COMPREPLY=( $( compgen -c -- $cur ) )		return 0	fi	# determine manual section to search	[[ "$prev" == [0-9ln] ]] && sect=$prev || sect='*'	manpath=$manpath:	if [ -n "$cur" ]; then		manpath="${manpath//://*man$sect/$cur* } ${manpath//://*cat$sect/$cur* }"	else		manpath="${manpath//://*man$sect/ } ${manpath//://*cat$sect/ }"	fi			# redirect stderr for when path doesn't exist	COMPREPLY=( $( eval command ls "$manpath" 2>/dev/null ) )	# weed out directory path names and paths to man pages	COMPREPLY=( ${COMPREPLY[@]##*/?(:)} )	# strip suffix from man pages	COMPREPLY=( ${COMPREPLY[@]%.@(gz|bz2)} )	COMPREPLY=( $( compgen -W '${COMPREPLY[@]%.*}' -- "${cur//\\\\/}" ) )	[[ "$prev" != [0-9ln] ]] && _filedir '[0-9ln]'	return 0}[ $UNAME = GNU -o $UNAME = Linux -o $UNAME = Darwin \  -o $UNAME = FreeBSD -o $UNAME = SunOS -o $UNAME = Cygwin \  -o $UNAME = OpenBSD ] && \complete -F _man $filenames man apropos whatis# renice(8) completion#_renice(){	local command cur curopt i	COMPREPLY=()	cur=`_get_cword`	command=$1	i=0	# walk back through command line and find last option	while [ $i -le $COMP_CWORD -a ${#COMPREPLY[@]} -eq 0 ]; do		curopt=${COMP_WORDS[COMP_CWORD-$i]}		case "$curopt" in		-u)			COMPREPLY=( $( compgen -u -- $cur ) )			;;		-g)			_pgids			;;		-p|$command)			_pids			;;		esac		i=$(( ++i ))	done}complete -F _renice renice# kill(1) completion#_kill(){	local cur	COMPREPLY=()	cur=`_get_cword`	if [ $COMP_CWORD -eq 1 ] && [[ "$cur" == -* ]]; then		# return list of available signals		_signals	else		# return list of available PIDs		_pids	fi}complete -F _kill kill# Linux and FreeBSD killall(1) completion.#[ $UNAME = Linux -o $UNAME = FreeBSD ] &&_killall(){	local cur	COMPREPLY=()	cur=`_get_cword`	if [ $COMP_CWORD -eq 1 ] && [[ "$cur" == -* ]]; then		_signals	else		COMPREPLY=( $( compgen -W '$( command ps axo command | \			      sed -ne "1d; s/^\[\?\([^-][^] ]*\).*$/\1/p" | \			      sed -e "s/.*\///" )' -- $cur ) )	fi	return 0}[ $UNAME = Linux -o $UNAME = FreeBSD ] && complete -F _killall killall pkill# Linux and FreeBSD pgrep(1) completion.#[ $UNAME = Linux -o $UNAME = FreeBSD ] &&_pgrep(){	local cur	COMPREPLY=()	cur=`_get_cword`	COMPREPLY=( $( compgen -W '$( command ps axo command | \		      sed -ne "1d; s/^\[\?\([^-][^] ]*\).*$/\1/p" | \		      sed -e "s/.*\///" )' -- $cur ) )	return 0}[ $UNAME = Linux -o $UNAME = FreeBSD ] && complete -F _pgrep pgrep# Linux pidof(8) completion.[ $UNAME = Linux ] && complete -F _pgrep pidof# GNU find(1) completion. This makes heavy use of ksh style extended# globs and contains Linux specific code for completing the parameter# to the -fstype option.#_find(){	local cur prev i exprfound onlyonce	COMPREPLY=()	cur=`_get_cword`	prev=${COMP_WORDS[COMP_CWORD-1]}	case "$prev" in	-@(max|min)depth)		COMPREPLY=( $( compgen -W '0 1 2 3 4 5 6 7 8 9' -- $cur ) )		return 0		;;	-?(a|c)newer|-fls|-fprint?(0|f)|-?(i)?(l)name|-?(i)wholename)		_filedir		return 0		;;	-fstype)		# this is highly non-portable		[ -e /proc/filesystems ] &&		COMPREPLY=( $( cut -d$'\t' -f 2 /proc/filesystems | \				grep "^$cur" ) )		return 0		;;	-gid)		_gids		return 0		;;	-group)		if [ -n "$bash205" ]; then			COMPREPLY=( $( compgen -g -- $cur 2>/dev/null) )		fi		return 0		;;	-?(x)type)		COMPREPLY=( $( compgen -W 'b c d p f l s' -- $cur ) )		return 0		;;	-uid)		_uids		return 0		;;	-user)		COMPREPLY=( $( compgen -u -- $cur ) )		return 0		;;	-exec|-ok)		COMP_WORDS=(COMP_WORDS[0] $cur)		COMP_CWORD=1		_command		return 0		;;	-[acm]min|-[acm]time|-?(i)?(l)name|-inum|-?(i)path|-?(i)regex| \	-links|-perm|-size|-used|-printf)		# do nothing, just wait for a parameter to be given		return 0		;;	esac	_expand || return 0	# set exprfound to 1 if there is already an expression present	for i in ${COMP_WORDS[@]}; do		[[ "$i" = [-\(\),\!]* ]] && exprfound=1 && break	done	# handle case where first parameter is not a dash option	if [ "$exprfound" != 1 ] && [[ "$cur" != [-\(\),\!]* ]]; then		_filedir -d		return 0	fi	# complete using basic options	COMPREPLY=( $( compgen -W '-daystart -depth -follow -help -maxdepth \			-mindepth -mount -noleaf -version -xdev -amin -anewer \			-atime -cmin -cnewer -ctime -empty -false -fstype \			-gid -group -ilname -iname -inum -ipath -iregex \			-wholename \			-links -lname -mmin -mtime -name -newer -nouser \			-nogroup -perm -regex -size -true -type -uid -used \			-user -xtype -exec -fls -fprint -fprint0 -fprintf -ok \			-print -print0 -printf -prune -ls' -- $cur ) )	# this removes any options from the list of completions that have	# already been specified somewhere on the command line, as long as	# these options can only be used once (in a word, "options", in	# opposition to "tests" and "actions", as in the find(1) manpage).	onlyonce=' -daystart -depth -follow -help -maxdepth -mindepth -mount \		   -noleaf -version -xdev '	COMPREPLY=( $( echo "${COMP_WORDS[@]}" | \		       (while read -d ' ' i; do			    [ "$i" == "" ] ||			    [ "${onlyonce/ ${i%% *} / }" == "$onlyonce" ] &&			    continue			    # flatten array with spaces on either side,			    # otherwise we cannot grep on word boundaries of			    # first and last word			    COMPREPLY=" ${COMPREPLY[@]} "			    # remove word from list of completions			    COMPREPLY=( ${COMPREPLY/ ${i%% *} / } )			done			echo "${COMPREPLY[@]}")		  ) )

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色美美综合视频| 韩国女主播一区二区三区| 国产精品剧情在线亚洲| 自拍偷拍欧美激情| 婷婷开心久久网| 国产精品一区在线| 色屁屁一区二区| 精品国产123| 亚洲天堂福利av| 国模一区二区三区白浆| 成人av中文字幕| 欧美日韩成人综合天天影院 | 顶级嫩模精品视频在线看| 激情综合色播激情啊| 国产白丝网站精品污在线入口| 91浏览器入口在线观看| 欧美一二三区在线| 亚洲精品免费在线播放| 国产一区二区中文字幕| 91福利精品视频| 国产精品久久久久影院| 麻豆精品国产传媒mv男同| 91在线国产福利| 久久蜜臀精品av| 久久久久久久久久久久久夜| 亚洲高清免费一级二级三级| 91偷拍与自偷拍精品| 国产色综合一区| 国产在线看一区| 欧美一级免费观看| 日韩电影在线一区二区三区| 欧美性感一类影片在线播放| 综合精品久久久| 成人免费av在线| 国产精品午夜久久| 国产99久久久精品| 国产精品麻豆视频| 在线看日本不卡| 亚洲成人av中文| 欧美一级夜夜爽| 精品在线一区二区| xvideos.蜜桃一区二区| 国产在线看一区| 亚洲图片你懂的| 欧美日韩二区三区| 免费在线观看精品| 久久色在线观看| 在线观看视频91| 日本不卡的三区四区五区| 久久久久久久久久久久电影 | 欧日韩精品视频| 偷拍自拍另类欧美| 亚洲国产激情av| 欧美一级艳片视频免费观看| 粉嫩欧美一区二区三区高清影视| 中文字幕一区二区三区视频| 欧美一级片在线看| av成人动漫在线观看| 日韩成人dvd| 一区二区在线观看视频| 久久精品一区二区三区不卡| 欧美性大战久久久久久久| 蜜臀久久久久久久| 亚洲乱码日产精品bd| 久久久久久久久久久久久久久99| 欧美亚洲国产一区在线观看网站| 国产一区在线观看视频| 蜜桃视频在线观看一区二区| 国产精品成人在线观看 | 久久99这里只有精品| 亚洲一区二区三区影院| 中文字幕亚洲一区二区va在线| 欧美不卡激情三级在线观看| 欧美在线免费播放| 一本色道a无线码一区v| 成人av在线看| aaa欧美色吧激情视频| 国产福利精品一区| 成人免费毛片高清视频| 成人免费黄色大片| 成人综合婷婷国产精品久久免费| 极品美女销魂一区二区三区| 日本不卡免费在线视频| 日本不卡在线视频| 亚洲午夜国产一区99re久久| 亚洲不卡av一区二区三区| 亚洲成人av一区二区三区| 婷婷开心久久网| 国产成人精品亚洲日本在线桃色| 国产成人亚洲精品狼色在线| av中文一区二区三区| 91首页免费视频| 911国产精品| 国产视频一区二区三区在线观看| 国产精品第一页第二页第三页| 亚洲欧美国产三级| 日韩不卡在线观看日韩不卡视频| 久草中文综合在线| 99re8在线精品视频免费播放| 色狠狠av一区二区三区| 日韩欧美一区在线| 国产精品久久久久婷婷| 日韩黄色小视频| 色婷婷综合在线| 欧美变态口味重另类| 亚洲欧美日韩国产手机在线| 日韩福利电影在线| 99久久精品免费看国产| 91精品国产一区二区| 国产精品久99| 狠狠色丁香久久婷婷综合_中| 91小视频在线| 国产欧美精品一区aⅴ影院 | 欧美裸体bbwbbwbbw| 中国色在线观看另类| 久88久久88久久久| 欧美日韩国产bt| 亚洲成人免费在线| 色综合色综合色综合| 国产精品免费看片| 91农村精品一区二区在线| 91在线高清观看| 国产三区在线成人av| 国产一区二区在线观看免费 | 国产精品久久久久三级| 久久精品国产免费| 精品国产一二三区| 国产一区二区0| 国产精品久久久久久久浪潮网站| 国产精品88av| ㊣最新国产の精品bt伙计久久| 粉嫩av一区二区三区在线播放| 国产精品污www在线观看| 91网页版在线| 日韩电影免费一区| 国产精品第四页| 欧美肥妇bbw| 国产在线精品一区二区| 一区二区三区在线视频观看58 | 蜜桃av噜噜一区| 国产欧美日韩视频一区二区 | 亚洲成av人片在线观看| 精品99999| 欧美日韩亚洲综合| 国产成人午夜高潮毛片| 午夜精品久久久久久久99樱桃| 久久色成人在线| 5858s免费视频成人| 91在线视频官网| 国产高清不卡二三区| 午夜精品福利一区二区三区av| 亚洲国产精品黑人久久久| 91精品国产欧美一区二区18| 一本大道av一区二区在线播放| 久久99热99| 激情综合五月婷婷| 国产精品久久久久精k8| 日韩成人精品在线观看| 亚洲理论在线观看| 欧美高清在线视频| 久久精品视频一区二区三区| 在线播放中文一区| 欧美日本不卡视频| 欧美日韩一区小说| 日本高清无吗v一区| 在线观看91视频| 在线观看一区不卡| 欧美三级视频在线播放| 欧美性欧美巨大黑白大战| 欧美唯美清纯偷拍| 欧美日韩亚洲高清一区二区| 91精品国产综合久久精品图片| 99精品久久99久久久久| 极品尤物av久久免费看| 不卡的av在线播放| 国产99一区视频免费 | 日韩一区二区麻豆国产| 日韩你懂的在线播放| 久久精品视频免费观看| 国产精品污污网站在线观看| 亚洲免费观看高清| 亚洲18色成人| 成人激情电影免费在线观看| 在线视频欧美区| 欧美一区二区三区视频| 国产欧美日韩另类一区| 亚洲一区成人在线| 日本伊人色综合网| 国产成人精品综合在线观看 | 成人一道本在线| 欧美日韩高清一区二区| 亚洲色图另类专区| 国内精品久久久久影院一蜜桃| 欧美精品亚洲一区二区在线播放| 欧美精品视频www在线观看| 国产亚洲精品中文字幕| 亚洲高清三级视频| 99视频国产精品| 精品国产91乱码一区二区三区| 亚洲丝袜另类动漫二区|