Update 2023-01-10 22:18 OpenBSD/amd64

This commit is contained in:
c0dev0id
2023-01-10 22:18:46 +01:00
parent 4f96b5ce5a
commit 024c87e623
12 changed files with 106 additions and 148 deletions

15
.bin/bookmarks Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
clean() {
cat ~/.browser_history \
| sort -k 3 \
| uniq -f2 \
| sort \
> /tmp/browser_history \
&& mv /tmp/browser_history ~/.browser_history
echo done.
}
case "$1" in
clean) clean; ;;
*) vim ~/.browser_history; ;;
esac