core: 运行出错时,显示出错命令

This commit is contained in:
bin456789
2023-08-01 21:59:49 +08:00
parent 52d7581e58
commit 00562068d0
2 changed files with 10 additions and 5 deletions

View File

@ -6,6 +6,7 @@
# 命令出错终止运行,将进入到登录界面,防止失联
set -eE
trap 'error line $LINENO return $?' ERR
this_script=$(realpath $0)
catch() {
if [ "$1" != "0" ]; then
@ -16,10 +17,11 @@ catch() {
error() {
color='\e[31m'
plain='\e[0m'
# 如果从trap调用显示错误行
[ "$1" = line ] && sed -n "$2"p $0
echo -e "${color}Error: $*${plain}"
wall "Error: $*"
# 如果从trap调用显示错误行
if [ "$1" = line ]; then
sed -n "$2"p $this_script
fi
}
error_and_exit() {