⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amanda-sh-lib.sh.in

📁 开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that a
💻 IN
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -