JustOS/linux-6.13/tools/net/sunrpc/extract.sh
justuser 02e73b8cd9 up
2025-01-24 17:00:19 +03:00

12 lines
271 B
Bash
Executable File

#! /bin/sh
# SPDX-License-Identifier: GPL-2.0
#
# Extract an RPC protocol specification from an RFC document.
# The version of this script comes from RFC 8166.
#
# Usage:
# $ extract.sh < rfcNNNN.txt > protocol.x
#
grep '^ *///' | sed 's?^ */// ??' | sed 's?^ *///$??'