amanda-sh-lib.sh.in

来自「开源备份软件源码 AMANDA, the Advanced Marylan」· IN 代码 · 共 50 行

IN
50
字号
# Shell library containing functions and definitions common to amanda's# shell scripts and wrappers.# Include this file as follows:#   prefix="@prefix@"#   exec_prefix="@exec_prefix@"#   amlibexecdir="@amlibexecdir@"#   . "${amlibexecdir}/amanda-sh-lib.sh"##### Configure variablesGREP="@GREP@"EGREP="@EGREP@"GETTEXT="@GETTEXT@"GNUPLOT="@GNUPLOT@"GNUTAR="@GNUTAR@"STAR="@STAR@"SAMBA_CLIENT="@SAMBA_CLIENT@"GZIP="@GZIP@"SORT="@SORT@"MAILER="@MAILER@"PERL="@PERL@"AWK="@AWK@"##### Set up PATH for finding amanda executablesPATH="@sbindir@:@amlibexecdir@:$PATH"##### Gettext# use as follows:#   echo `_ "%s: '%s' is not executable" "$myname" "$binpath"`# NOTE: use a text editor with shell syntax hilighting to avoid# quoting errors!if test -n "$GETTEXT"; then    _() {	    fmt=`$GETTEXT -d amanda "$1"`	    shift	    printf "$fmt" $*    }else    _() {	printf "$@"    }fi

⌨️ 快捷键说明

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