Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
{
if (NF == $0) {
j++
}
else {
if ($1 == "FGroup:" || $1 == "FMember:") {
for (k=0; k<j; k++) print ""
}
print
j = 0
}
}
awk -f my-script your-input > your-output
sed '/^$/d' input.txt | awk '/^F/ {print ""} {print $0}' > output.txt