mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
7 lines
94 B
Bash
7 lines
94 B
Bash
#!/bin/sh -
|
|
|
|
F=_spell.$$
|
|
echo $1
|
|
spell < $1 > $F
|
|
sort $F $1.sp.ok | uniq -u | column
|
|
rm -f $F
|