बैश के PROMPT_COMMAND में हुक लगाने से, यह फ़ंक्शन हर बार आपको नया प्रॉम्प्ट चलाने के लिए मिलता है, इसलिए यह देखने का एक अच्छा समय है कि क्या आप एक निर्देशिका में हैं, जिसके लिए आप एक कस्टम इतिहास चाहते हैं। समारोह की चार मुख्य शाखाएँ हैं:
- यदि वर्तमान निर्देशिका (
$PWD
) नहीं बदली गई है, तो कुछ भी न करें (वापसी)।
लोक निर्माण विभाग तो है बदल गया है, तो हम एक स्थानीय समारोह जिसका एकमात्र उद्देश्य कारक के लिए एक स्थान में "कस्टम निर्देशिका" कोड है की स्थापना की। आप मेरी परीक्षा-निर्देशिकाओं को अपने (अलग करके |
) बदलना चाहेंगे ।
- यदि हम कस्टम निर्देशिका में नहीं या बाहर बदल गए हैं, तो बस "पिछली निर्देशिका" चर को अपडेट करें और फ़ंक्शन से बाहर लौटें।
चूंकि हमने निर्देशिकाओं को बदल दिया है, इसलिए "पिछली निर्देशिका" चर को अपडेट करें, फिर इन-मेमोरी इतिहास को हिस्टीमर पर सहेजें, फिर इन-मेमोरी इतिहास को साफ़ करें।
यदि हम एक कस्टम निर्देशिका में बदल गए हैं , तो .bash_history
वर्तमान निर्देशिका में एक फ़ाइल होने के लिए HISTFILE सेट करें ।
अन्यथा, हम एक कस्टम डायरेक्टरी से बदल गए हैं , इसलिए HISTFILE को स्टॉक एक पर रीसेट करें।
अंत में, जब से हमने इतिहास की फाइलें बदली हैं, उस पिछले इतिहास में वापस पढ़ें।
चीजों को प्राप्त करने के लिए, स्क्रिप्ट PROMPT_COMMAND मान सेट करता है और दो आंतरिक-उपयोग चर (स्टॉक हिस्टीमर और "पिछली निर्देशिका") को बचाता है।
prompt_command() {
# if PWD has not changed, just return
[[ $PWD == $_cust_hist_opwd ]] && return
function iscustom {
# returns 'true' if the passed argument is a custom-history directory
case "$1" in
( */tmp/faber/somedir | */tmp/faber/someotherdir ) return 0;;
( * ) return 1;;
esac
}
# PWD changed, but it's not to or from a custom-history directory,
# so update opwd and return
if ! iscustom "$PWD" && ! iscustom "$_cust_hist_opwd"
then
_cust_hist_opwd=$PWD
return
fi
# we've changed directories to and/or from a custom-history directory
# save the new PWD
_cust_hist_opwd=$PWD
# save and then clear the old history
history -a
history -c
# if we've changed into or out of a custom directory, set or reset HISTFILE appropriately
if iscustom "$PWD"
then
HISTFILE=$PWD/.bash_history
else
HISTFILE=$_cust_hist_stock_histfile
fi
# pull back in the previous history
history -r
}
PROMPT_COMMAND='prompt_command'
_cust_hist_stock_histfile=$HISTFILE
_cust_hist_opwd=$PWD