about summary refs log tree commit diff stats
path: root/bash/rec.bash
blob: 9fc854f13bd81c24bbe740a994b3191ba34258f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Recutils bash integration
# https://www.gnu.org/software/recutils/

# enable shared library --- add other possible locations here
for lib in /usr/lib/recutils/bash-builtins/readrec.so ; do
	if [ -f "$lib" ]; then
		enable -f "$lib" readrec
		break
	fi
done