Geçmişimdeki bir dizeyle eşleşen tüm komutları silmem gerekiyor. Denedim:
$ 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)
Bunu yapmanın doğru yolu nedir?
history -d X
. Bu soruya rastladım çünkü daha yeni yapmıştımhistory | grep search_str | sort -nr | awk '{print $1}' | while read i; do history -d $i; done
. Hata yok, ancak silinen hiçbir şey yok. Neden kimse açıklayabilir?