Necesito eliminar todos los comandos en mi historial que coinciden con una cadena. He intentado:
$ 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)
¿Cuál es la forma correcta de hacer esto?
history -d X
. Encontré esta pregunta porque acababa de hacerlohistory | grep search_str | sort -nr | awk '{print $1}' | while read i; do history -d $i; done
. Sin error, pero nada eliminado. ¿Alguien puede explicar por qué?