aboutsummaryrefslogtreecommitdiff
path: root/libexec/recit-recsel-entries
blob: f2ca2f96323b99888e641c91553466accee49784 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash
set -e

recfile=$(recit-file)

if [[ "$1" = "" ]]; then
  out=$(recsel -t Entry "$recfile" | recfmt -f share/recit/templates/entries.templ)
else
  out=$(recsel -t Entry "$recfile" -e "$1" | recfmt -f share/recit/templates/entries.templ)
fi
echo -e "$out"