Multiple scripts that are useful but don't deserve their own repository.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
multiple_scripts/joplin_search.sh

21 lines
1.1 KiB

#!/bin/bash
##############################################################################
#
# joplin_search.sh
# Wrapper for searching and quickly viewing Joplin notes using fzf,rg, and bat
# (c) Steven Saus 2021
# Licensed under the MIT license
#
##############################################################################
JoplinSearchDir="/home/steven/documents/cloud_nextcloud/joplin"
#SearchTerm=$(echo ${@} | sed '/^$/!s/[^ ]* */| -e &/g' | tail -c +2)
SearchTerm=${@}
#SearchString=$(printf "rg %s -l -f $(rg --files-without-match \"_diff:\" %s)" "${SearchTerm}" "${JoplinSearchDir}")
#cat "$SearchString"
#eval "$SearchString"
#rg -l -w "${SearchTerm}" $(rg --files-without-match "title_diff:" ${JoplinSearchDir}) | fzf --no-hscroll -m --height 90% --border --ansi --no-bold --preview='bat {}'
#| rg --files-without-match -e "_diff:" -f - | fzf --no-hscroll -m --height 90% --border --ansi --no-bold --preview="bat {}"
/home/steven/bin/showdocs -g $(grep -l -i "${SearchTerm}" $(grep -l -x "type_: 1" ${JoplinSearchDir}/*.md) | fzf --no-hscroll -m --height 90% --border --ansi --no-bold --preview='bat {}')