Files
dotfiles-and-setup/src_files/.local/scripts/bookmark-preview-info

30 lines
397 B
Bash
Executable File

#!/bin/sh
IFS="^" read -r bm_name bm_url bm_tags bm_date_added bm_type bm_parent <<BM_LINE_BLOCK
$(printf "%s" "$@")
BM_LINE_BLOCK
bm_preview_format_block=$(cat <<'BM_PREVIEW_FORMAT_BLOCK'
name:
%s
url:
%s
tags:
%s
date_added:
%s
type:
%s
parent:
%s
BM_PREVIEW_FORMAT_BLOCK)
printf "$bm_preview_format_block" \
"$bm_name" "$bm_url" "$bm_tags" "$bm_date_added" "$bm_type" "$bm_parent"