aboutsummaryrefslogtreecommitdiff
path: root/libexec/recit-recsel-projects
blob: 017e3e442c0826c881d35b173f5faf653b195b89 (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 Project "$recfile" | recfmt -f share/recit/templates/projects.templ)
else
  out=$(recsel -t Project "$recfile" -e "$1" | recfmt -f share/recit/templates/projects.templ)
fi
echo -e "$out"