shithub: 9utils

ref: 7217e737dd503a2687d49950a3714f15e71b2e24
dir: /util/savehist/

View raw version
#!/bin/rc
# savehist - prune and save command history
# usage: savehist

rfork ne
temp=/tmp/quit-$pid
hist=$home/lib/text
touch $hist
#sigexit{ rm -f $temp }

grep 'term% ' /dev/text > $temp
cat $temp $hist | sort | uniq > /tmp/TMP-$pid
mv /tmp/TMP-$pid $hist
rm -f $temp