Muszę usunąć wszystkie polecenia w mojej historii pasujące do ciągu. Próbowałem:
$ 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)
Jak to zrobić?
history -d X
. Natknąłem się na to pytanie, ponieważ właśnie to zrobiłemhistory | grep search_str | sort -nr | awk '{print $1}' | while read i; do history -d $i; done
. Brak błędu, ale nic nie zostało usunięte. Ktoś może wyjaśnić dlaczego?