क्या बैश में हुक होता है जो कमांड को निष्पादित करने से पहले चलाया जाता है?


111

बैश में, क्या मैं एक कमांड चलाने से ठीक पहले एक फ़ंक्शन को निष्पादित करने की व्यवस्था कर सकता हूं?

नहीं है $PROMPT_COMMAND, जो सिर्फ एक कमांड चलाने के बाद संकेत दिखाकर, यानी, पहले मार डाला जाता है।

बाश के समारोह के $PROMPT_COMMANDअनुरूप है precmd; तो मैं जो देख रहा हूं वह zsh के बराबर एक बैश है preexec

उदाहरण एप्लिकेशन: निष्पादित किए जा रहे कमांड के लिए अपना टर्मिनल शीर्षक सेट करें; स्वचालित रूप timeसे हर कमांड से पहले जोड़ें ।


3
bash संस्करण 4.4 में एक PS0चर है जो कार्य करता है PS1लेकिन कमांड पढ़ने के बाद लेकिन इसे निष्पादित करने से पहले उपयोग किया जाता है। Gnu.org/software/bash/manual/bashref.html#Bash-Variables
ग्लेन जैकमैन

जवाबों:


93

मूल रूप से नहीं, लेकिन DEBUGजाल का उपयोग करके इसे हैक किया जा सकता है । यह कोड सेट preexecऔर precmdzsh के समान कार्य करता है। कमांड लाइन को एकल तर्क के रूप में पारित किया जाता है preexec

यहां precmdफ़ंक्शन को सेट करने के लिए कोड का सरलीकृत संस्करण है जिसे प्रत्येक कमांड को चलाने से पहले निष्पादित किया जाता है।

preexec () { :; }
preexec_invoke_exec () {
    [ -n "$COMP_LINE" ] && return  # do nothing if completing
    [ "$BASH_COMMAND" = "$PROMPT_COMMAND" ] && return # don't cause a preexec for $PROMPT_COMMAND
    local this_command=`HISTTIMEFORMAT= history 1 | sed -e "s/^[ ]*[0-9]*[ ]*//"`;
    preexec "$this_command"
}
trap 'preexec_invoke_exec' DEBUG

यह चाल ग्लिफ़ लेफकोविट्ज़ के कारण है ; धन्यवाद करने के लिए bcat मूल लेखक पता लगाने के लिए।

संपादित करें। ग्लिफ़ की हैक का अद्यतन संस्करण यहां पाया जा सकता है: https://github.com/rcaloras/bash-preexec


"$BASH_COMMAND" = "$PROMPT_COMMAND"तुलना मेरे लिए काम नहीं कर रहा i.imgur.com/blneCdQ.png
laggingreflex

2
मैंने इस कोड का उपयोग करने की कोशिश की साइबर पर। अफसोस की बात यह है कि इसमें काफी तीव्र प्रदर्शन प्रभाव हैं - एक साधारण बेंचमार्क कमांड को चलाने में time for i in {1..10}; do true; doneसामान्य सेकंड में और 1.400 से 1.600 सेकंड तक DEBUG के जाल को सक्रिय करने में मदद मिलती है। यह ट्रैप कमांड को प्रति लूप में दो बार निष्पादित करने का कारण बनता है - और सिगविन पर सेड को निष्पादित करने के लिए आवश्यक फोर्किंग अकेले ( echoबिल्डिन और के बीच की गति का अंतर /bin/echo) के लिए लगभग बग सेकंड में धीमी गति से धीमा है । शायद ध्यान में रखने के लिए कुछ।
kdb

2
कांटा बेकार के लिए @kdb Cygwin प्रदर्शन। मेरी समझ यह है कि यह विंडोज पर उपलब्ध नहीं है। यदि आपको विंडोज पर बैश कोड चलाने की आवश्यकता है, तो फोर्किंग पर कटौती करने का प्रयास करें।
गाइल्स

@DevNull जाल को हटाकर इसे बहुत आसानी से दरकिनार किया जा सकता है। लोगों को ऐसा करने का कोई तकनीकी समाधान नहीं है जो उन्हें करने की अनुमति है लेकिन ऐसा नहीं करना चाहिए। आंशिक उपाय हैं: जितने लोगों तक पहुँच न दें, सुनिश्चित करें कि आपके बैकअप अद्यतित हैं, सीधे फ़ाइल हेरफेर के बजाय संस्करण नियंत्रण का उपयोग करें, ... यदि आप ऐसा कुछ चाहते हैं जो उपयोगकर्ता आसानी से अक्षम नहीं कर सकते हैं, तो अकेले बिल्कुल भी अक्षम नहीं कर सकते हैं, तो शेल में प्रतिबंध आपकी मदद नहीं करेंगे: उन्हें केवल उतने ही आसानी से हटाया जा सकता है जितना उन्हें जोड़ा जा सकता है।
गिल्स

1
यदि आपके पास एक PROMPT_COMMANDचर में अधिक कमांड हैं (जैसे कि सीमांकित द्वारा ;), तो आपको preexec_invoke_execफ़ंक्शन की दूसरी पंक्ति में पैटर्न मिलान का उपयोग करने की आवश्यकता हो सकती है , बस इस तरह [[ "$PROMPT_COMMAND" =~ "$BASH_COMMAND" ]]:। ऐसा इसलिए है क्योंकि BASH_COMMANDप्रत्येक कमांड अलग-अलग प्रदर्शित करता है।
जिरिस्लाव

20

आप trapकमांड (से help trap) का उपयोग कर सकते हैं :

यदि कोई SIGNAL_SPEC DEBUG है, तो ARG को प्रत्येक साधारण कमांड से पहले निष्पादित किया जाता है।

उदाहरण के लिए, टर्मिनल शीर्षक को गतिशील रूप से बदलने के लिए आप इसका उपयोग कर सकते हैं:

trap 'echo -e "\e]0;$BASH_COMMAND\007"' DEBUG

इस स्रोत से


1
दिलचस्प ... मेरे पुराने उबंटू सर्वर पर, help trap"यदि एक SIGNAL_SPEC DEBUG है, तो ARG को प्रत्येक सरल कमांड के बाद निष्पादित किया जाता है " [जोर मेरा]।
लार्स

1
मैंने स्वीकार किए गए उत्तर में कुछ विशेष सामानों के साथ इस उत्तर के संयोजन का उपयोग किया trap '[ -n "$COMP_LINE" ] && [ "$BASH_COMMAND" != "$PROMPT_COMMAND" ] && date "+%X";echo -e "\e]0;$BASH_COMMAND\007"' DEBUG:। यह कमांड को शीर्षक में रखता है और हर कमांड से पहले वर्तमान समय को भी प्रिंट करता है, लेकिन निष्पादित करते समय ऐसा नहीं करता है $PROMPT_COMMAND
coredumperror

1
@CoreDumpError, चूंकि आपने कोड को फिर से बनाया है, इसलिए आपको सभी शर्तों को नकारना चाहिए: पहला ऐसा हो जाता है [ -z "$COMP_LINE" ]:।
cYrus

@cYrus धन्यवाद! मुझे पता नहीं है कि लगभग पर्याप्त बैश प्रोग्रामिंग ने उस समस्या पर ध्यान दिया है।
coredumperror

@ लार्श: आपके पास कौन सा संस्करण है? मेरे पास BASH_VERSION = "4.3.11 (1) -release" है और यह कहता है कि "ARG को हर साधारण कमांड से निष्पादित किया जाता है ।"
मुशीफिल

12

यह एक शेल फ़ंक्शन नहीं है जिसे निष्पादित किया जाता है, लेकिन मैंने एक $PS0त्वरित स्ट्रिंग का योगदान दिया जो प्रत्येक कमांड चलाने से पहले प्रदर्शित होता है। यहाँ विवरण: http://stromberg.dnsalias.org/~strombrg/PS0-prompt/

$PS0bash4.4 में शामिल किया गया है , हालांकि 4.4 को शामिल करने के लिए अधिकांश लिनक्स के लिए कुछ समय लगेगा - यदि आप चाहें तो आप 4.4 का निर्माण कर सकते हैं; उस स्थिति में, आपको संभवतः इसे नीचे रखना चाहिए /usr/local, इसे /etc/shellsऔर इसे जोड़ना चाहिए chsh। फिर लॉग आउट करें और वापस अंदर जाएं, शायद sshअपने आप को @ स्थानीयहोस्ट करें या suटेस्ट के रूप में खुद को आईएनजी करें।


11

मुझे हाल ही में मेरी एक साइड प्रोजेक्ट के लिए इस सटीक समस्या को हल करना था। मैंने एक काफी मजबूत और लचीला समाधान बनाया जो कि ज़ीश के प्रीक्सेक और बैश के लिए प्रेडम की कार्यक्षमता का अनुकरण करता है।

https://github.com/rcaloras/bash-preexec

यह मूल रूप से ग्लिफ़ लेफकोविट्ज़ के समाधान पर आधारित था, लेकिन मैंने इस पर सुधार किया है और इसे आज तक लाया है। जरूरत पड़ने पर किसी सुविधा में मदद करना या जोड़ना खुश होना।


3

संकेत के लिए धन्यवाद! मैंने इसका उपयोग करते हुए समाप्त किया:

#created by francois scheurer

#sourced by '~/.bashrc', which is the last runned startup script for bash invocation
#for login interactive, login non-interactive and non-login interactive shells.
#note that a user can easily avoid calling this file by using options like '--norc';
#he also can unset or overwrite variables like 'PROMPT_COMMAND'.
#therefore it is useful for audit but not for security.

#prompt & color
#http://www.pixelbeat.org/docs/terminal_colours/#256
#http://www.frexx.de/xterm-256-notes/
_backnone="\e[00m"
_backblack="\e[40m"
_backblue="\e[44m"
_frontred_b="\e[01;31m"
_frontgreen_b="\e[01;32m"
_frontgrey_b="\e[01;37m"
_frontgrey="\e[00;37m"
_frontblue_b="\e[01;34m"
PS1="\[${_backblue}${_frontgreen_b}\]\u@\h:\[${_backblack}${_frontblue_b}\]\w\\$\[${_backnone}${_frontgreen_b}\] "

#'history' options
declare -rx HISTFILE="$HOME/.bash_history"
chattr +a "$HISTFILE" # set append-only
declare -rx HISTSIZE=500000 #nbr of cmds in memory
declare -rx HISTFILESIZE=500000 #nbr of cmds on file
declare -rx HISTCONTROL="" #does not ignore spaces or duplicates
declare -rx HISTIGNORE="" #does not ignore patterns
declare -rx HISTCMD #history line number
history -r #to reload history from file if a prior HISTSIZE has truncated it
if groups | grep -q root; then declare -x TMOUT=3600; fi #timeout for root's sessions

#enable forward search (ctrl-s)
#http://ruslanspivak.com/2010/11/25/bash-history-incremental-search-forward/
stty -ixon

#history substitution ask for a confirmation
shopt -s histverify

#add timestamps in history - obsoleted with logger/syslog
#http://www.thegeekstuff.com/2008/08/15-examples-to-master-linux-command-line-history/#more-130
#declare -rx HISTTIMEFORMAT='%F %T '

#bash audit & traceabilty
#
#
declare -rx AUDIT_LOGINUSER="$(who -mu | awk '{print $1}')"
declare -rx AUDIT_LOGINPID="$(who -mu | awk '{print $6}')"
declare -rx AUDIT_USER="$USER" #defined by pam during su/sudo
declare -rx AUDIT_PID="$$"
declare -rx AUDIT_TTY="$(who -mu | awk '{print $2}')"
declare -rx AUDIT_SSH="$([ -n "$SSH_CONNECTION" ] && echo "$SSH_CONNECTION" | awk '{print $1":"$2"->"$3":"$4}')"
declare -rx AUDIT_STR="[audit $AUDIT_LOGINUSER/$AUDIT_LOGINPID as $AUDIT_USER/$AUDIT_PID on $AUDIT_TTY/$AUDIT_SSH]"
declare -rx AUDIT_SYSLOG="1" #to use a local syslogd
#
#PROMPT_COMMAND solution is working but the syslog message are sent *after* the command execution, 
#this causes 'su' or 'sudo' commands to appear only after logouts, and 'cd' commands to display wrong working directory
#http://jablonskis.org/2011/howto-log-bash-history-to-syslog/
#declare -rx PROMPT_COMMAND='history -a >(tee -a ~/.bash_history | logger -p user.info -t "$AUDIT_STR $PWD")' #avoid subshells here or duplicate execution will occurs!
#
#another solution is to use 'trap' DEBUG, which is executed *before* the command.
#http://superuser.com/questions/175799/does-bash-have-a-hook-that-is-run-before-executing-a-command
#http://www.davidpashley.com/articles/xterm-titles-with-bash.html
#set -o functrace; trap 'echo -ne "===$BASH_COMMAND===${_backvoid}${_frontgrey}\n"' DEBUG
set +o functrace #disable trap DEBUG inherited in functions, command substitutions or subshells, normally the default setting already
#enable extended pattern matching operators
shopt -s extglob
#function audit_DEBUG() {
#  echo -ne "${_backnone}${_frontgrey}"
#  (history -a >(logger -p user.info -t "$AUDIT_STR $PWD" < <(tee -a ~/.bash_history))) && sync && history -c && history -r
#  #http://stackoverflow.com/questions/103944/real-time-history-export-amongst-bash-terminal-windows
#  #'history -c && history -r' force a refresh of the history because 'history -a' was called within a subshell and therefore
#  #the new history commands that are appent to file will keep their "new" status outside of the subshell, causing their logging
#  #to re-occur on every function call...
#  #note that without the subshell, piped bash commands would hang... (it seems that the trap + process substitution interfer with stdin redirection)
#  #and with the subshell
#}
##enable trap DEBUG inherited for all subsequent functions; required to audit commands beginning with the char '(' for a subshell
#set -o functrace #=> problem: completion in commands avoid logging them
function audit_DEBUG() {
    #simplier and quicker version! avoid 'sync' and 'history -r' that are time consuming!
    if [ "$BASH_COMMAND" != "$PROMPT_COMMAND" ] #avoid logging unexecuted commands after Ctrl-C or Empty+Enter
    then
        echo -ne "${_backnone}${_frontgrey}"
        local AUDIT_CMD="$(history 1)" #current history command
        #remove in last history cmd its line number (if any) and send to syslog
        if [ -n "$AUDIT_SYSLOG" ]
        then
            if ! logger -p user.info -t "$AUDIT_STR $PWD" "${AUDIT_CMD##*( )?(+([0-9])[^0-9])*( )}"
            then
                echo error "$AUDIT_STR $PWD" "${AUDIT_CMD##*( )?(+([0-9])[^0-9])*( )}"
            fi
        else
            echo $( date +%F_%H:%M:%S ) "$AUDIT_STR $PWD" "${AUDIT_CMD##*( )?(+([0-9])[^0-9])*( )}" >>/var/log/userlog.info
        fi
    fi
    #echo "===cmd:$BASH_COMMAND/subshell:$BASH_SUBSHELL/fc:$(fc -l -1)/history:$(history 1)/histline:${AUDIT_CMD%%+([^ 0-9])*}===" #for debugging
}
function audit_EXIT() {
    local AUDIT_STATUS="$?"
    if [ -n "$AUDIT_SYSLOG" ]
    then
        logger -p user.info -t "$AUDIT_STR" "#=== bash session ended. ==="
    else
        echo $( date +%F_%H:%M:%S ) "$AUDIT_STR" "#=== bash session ended. ===" >>/var/log/userlog.info
    fi
    exit "$AUDIT_STATUS"
}
#make audit trap functions readonly; disable trap DEBUG inherited (normally the default setting already)
declare -fr +t audit_DEBUG
declare -fr +t audit_EXIT
if [ -n "$AUDIT_SYSLOG" ]
then
    logger -p user.info -t "$AUDIT_STR" "#=== New bash session started. ===" #audit the session openning
else
    echo $( date +%F_%H:%M:%S ) "$AUDIT_STR" "#=== New bash session started. ===" >>/var/log/userlog.info
fi
#when a bash command is executed it launches first the audit_DEBUG(),
#then the trap DEBUG is disabled to avoid a useless rerun of audit_DEBUG() during the execution of pipes-commands;
#at the end, when the prompt is displayed, re-enable the trap DEBUG
declare -rx PROMPT_COMMAND="trap 'audit_DEBUG; trap DEBUG' DEBUG"
declare -rx BASH_COMMAND #current command executed by user or a trap
declare -rx SHELLOPT #shell options, like functrace  
trap audit_EXIT EXIT #audit the session closing

का आनंद लें!


मुझे पाइप किए गए बैश कमांड्स के साथ एक समस्या थी जो लटका हुआ है ... मुझे एक सबशेल का उपयोग करके वर्कअराउंड मिला, लेकिन इससे 'हिस्ट्री-ए' की वजह से सब्सक्रिप्शन दायरे से बाहर के इतिहास को रीफ्रेश नहीं किया जा सका ... अंत में समाधान एक फंक्शन का उपयोग करना था कि उप-निष्पादन के बाद इतिहास को फिर से पढ़ें। यह वैसा ही काम करता है जैसा मैं चाहता था। जैसा कि वैदास ने jablonskis.org/2011/howto-log-bash-history-to-syslog पर लिखा है , सी में बैश को पैच करने की तुलना में तैनात करना अधिक आसान है (मैंने ऐसा अतीत में भी किया था)। लेकिन हर बार इतिहास की फाइल को पढ़ते हुए और डिस्क 'सिंक' करते समय कुछ प्रदर्शन ड्रॉप होता है ...
फ्रेंकोइस scheurer

5
आप उस कोड को ट्रिम करना चाहते हैं; वर्तमान में यह लगभग पूरी तरह से अपठनीय है।
l0b0

3

मैंने एक पैच या एक विशेष निष्पादन योग्य उपकरण का उपयोग किए बिना सभी 'बैश' कमांड / टेक्स्ट-फाइल या 'syslog' सर्वर में लॉग इन करने के लिए एक विधि लिखी।

इसे तैनात करना बहुत आसान है, क्योंकि यह एक सरल शेलस्क्रिप्ट है जिसे 'बैश' के आरंभ में एक बार कहा जाना चाहिए।

यहाँ विधि देखें ।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.