summaryrefslogtreecommitdiff
path: root/src/texinfo/get_title
blob: b501501349912ba588f23933e934268a7bfb0136 (plain)
1
2
3
4
5
6
7
8
get_title() {
	FILE="$1"

	pup -p -f "$FILE" 'title text{}' | \
		tr -d \\n | \
		sed 's/ (GNU[^)]*)$//' | \
		sed 's/\"/\"\"/g'
}