diff options
author | Louie S <louie@example.com> | 2023-09-15 10:11:41 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-15 10:11:41 -0400 |
commit | d44e7f620f4970ab72bd7979cd8751857f683915 (patch) | |
tree | 72518b296a6877ce063430779687ee9896640974 /src/texinfo/get_title | |
parent | d4bd46635fe9a74bf35812ee5b635af177e74cfc (diff) |
Diffstat (limited to 'src/texinfo/get_title')
-rw-r--r-- | src/texinfo/get_title | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/texinfo/get_title b/src/texinfo/get_title new file mode 100644 index 0000000..b501501 --- /dev/null +++ b/src/texinfo/get_title @@ -0,0 +1,8 @@ +get_title() { + FILE="$1" + + pup -p -f "$FILE" 'title text{}' | \ + tr -d \\n | \ + sed 's/ (GNU[^)]*)$//' | \ + sed 's/\"/\"\"/g' +} |