blob: a5012c08e68de6d91b9992429066ab760e874bc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
set -e
if [[ -f "$HOME/.recit.location" ]]; then
recfile_location=$(cat "$HOME/.recit.location")
else
echo "$HOME/.recit.location not found, exiting"
exit 1
fi
echo "$recfile_location"
|