File: simple

package info (click to toggle)
doc-rfc 20201128-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 1,307,124 kB
file content (12 lines) | stat: -rwxr-xr-x 177 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

echo Tests that a few basic RFCs are present

set -e

cd /usr/share/doc/RFC/links

for i in 793 2821; do
  test -f rfc${i}.txt.gz || \
      test -f rfc${i}.txt
done