代码拉取完成,页面将自动刷新
#!/bin/bash
# Shared functions for various supporting scripts of compton
# Mostly copied from Gentoo gentoo-functions
GOOD=$'\e[32;01m'
WARN=$'\e[33;01m'
BAD=$'\e[31;01m'
HILITE=$'\e[36;01m'
BRACKET=$'\e[34;01m'
NORMAL=$'\e[0m'
# @FUNCTION: eerror
# @USAGE: [message]
# @DESCRIPTION:
# Show an error message.
eerror() {
echo -e "$@" | while read -r ; do
echo " $BAD*$NORMAL $REPLY" >&2
done
return 0
}
# @FUNCTION: einfo
# @USAGE: [message]
# @DESCRIPTION:
# Show a message.
einfo() {
echo -e "$@" | while read -r ; do
echo " $GOOD*$NORMAL $REPLY"
done
return 0
}
# @FUNCTION: die
# @USAGE:
# @DESCRIPTION:
# Print the call stack and the working directory, then quit the shell.
die() {
eerror "Call stack:"
(( n = ${#FUNCNAME[@]} - 1 ))
while (( n > 0 )); do
funcname=${FUNCNAME[$((n - 1))]}
sourcefile=$(basename ${BASH_SOURCE[${n}]})
lineno=${BASH_LINENO[$((n - 1))]}
eerror " ${sourcefile}:${lineno} - Called ${funcname}()"
(( n-- ))
done
eerror "Working directory: '$(pwd)'"
exit 1
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。