bash_agant_install/test.sh

15 lines
284 B
Bash

#!/bin/bash
set -e
export LD_PRELOAD=/etc/exec_hook/intercept.so
# ... (你现有的 .bashrc 内容) ...
if [[ -z "$ALREADY_LD_PRELOADED" ]]; then
if [[ -n "$LD_PRELOAD" ]]; then
export ALREADY_LD_PRELOADED=1
/etc/exec_hook/backend_service
exec bash
fi
fi