bookmk: use ^ as delimiter instead of #

this hopefully won't conflict with URLs
This commit is contained in:
dogeystamp 2023-04-09 10:26:45 -04:00
parent 45e44797b5
commit e6a7e3026e
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38

View File

@ -6,7 +6,7 @@
# -o: print to stdout
# -b: open in browser
output=$(cat ~/dox/not/bk.txt | fzf | awk -F'#' '{print $1}')
output=$(cat ~/dox/not/bk.txt | fzf | awk -F'^' '{print $1}')
# default action: clip, stdout, browser
action="clip"