prepare-source

来自「Rsync 3.0.5 source code」· 代码 · 共 52 行

TXT
52
字号
#!/bin/sh# Either use autoconf and autoheader to create configure.sh and config.h.in# or (optionally) fetch the latest development versions of generated files.## Specify one action or more than one to provide a fall-back:##   build     build the config files [the default w/no arg]#   fetch     fetch the latest dev config files#   fetchgen  fetch all the latest dev generated files#   fetchSRC  fetch the latest dev source files [NON-GENERATED FILES]## The script stops after the first successful action.dir=`dirname $0`if test x"$dir" != x -a x"$dir" != x.; then    cd "$dir"fiif test $# = 0; then    set -- buildfifor action in "${@}"; do    case "$action" in    build|make)	make -f prepare-source.mak	;;    fetch)	if perl --version >/dev/null 2>/dev/null; then	    files='c*'	else	    files='[cp]*'	fi	rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/"$files" .	;;    fetchgen)	rsync -pvz rsync://rsync.samba.org/rsyncftp/generated-files/'*' .	;;    fetchSRC)	rsync -pvrz --exclude=/.git/ rsync://rsync.samba.org/ftp/pub/unpacked/rsync/ .	;;    *)	echo "Unknown action: $action"	exit 1    esac    if test $? = 0; then	exit    fidoneexit 1

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?