Files
svr/usr/bin/history-del
T

9 lines
137 B
Bash
Raw Normal View History

2026-02-23 19:46:37 +01:00
#!/usr/bin/bash
NB_LINES=${1:=5}
for ((i=0;i<NB_LINES;i++))
do
history -d $(history | tail -n 1 | awk '{print $1}')
done
history -w