मुझे एक स्ट्रिंग से मेल खाते हुए अपने इतिहास की सभी कमांड हटाने की आवश्यकता है। मैंने कोशिश की:
$ history | grep searchstring | cut -d" " -f2 | history -d
-bash: history: -d: option requires an argument
$ history | grep searchstring | cut -d" " -f2 | xargs history -d
xargs: history: No such file or directory
$ temparg() { while read i; do "$@" "$i"; done }
$ history | grep searchstring | cut -d" " -f2 | temparg history -d
(no error, but nothing is deleted)
ऐसा करने का सही तरीका क्या है?
history -d X
। मैं इस सवाल पर आया क्योंकि मैंने अभी किया थाhistory | grep search_str | sort -nr | awk '{print $1}' | while read i; do history -d $i; done
। कोई त्रुटि नहीं, लेकिन कुछ भी नहीं हटाया गया। कोई भी समझा सकता है क्यों?