-
Notifications
You must be signed in to change notification settings - Fork 0
/
lcfold2-1
executable file
·28 lines (25 loc) · 1.33 KB
/
lcfold2-1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! /bin/sh
# lcfold2-1 - fold long lines using <backslash><newline> for line continuation
# Copyright (C) 2019,2022 Erik Auerswald <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Fold (line wrap) long lines as described in Internet Draft (I-D)
# draft-ietf-netmod-artwork-folding-04, now RFC 8792. In this script
# Strategy 1 ('\') of line wrapping described in the I-D is used. The I-D
# requires a header to signal beginning of text with folded (wrapped)
# lines, but no footer to signal the end of folded text. This script
# adds the header. The maximum line length is hard-coded to 69.
printf -- "NOTE: '%s' line wrapping per RFC 8792\n\n" '\'
sed -E 's/\\$/\\\\\n/' -- "$@" | \
sed -E 's/(.{68})(..)/\1\\\n\2/;tMORE;bEND;:MORE;P;D;:END'