Crash

Crash


# Awk prints out the filename, title and keywords/tag lines and Sed rearranges them for parsibility output="$(awk 2>/dev/null ' /<title>/ {printf " " FILENAME $0}; /keywords/ {printf $0}' "$webdir/$artdir"/*html | sed "s/\s*<meta.*keywords.*content=[\"']/|/ s/\s*<title>\s*/;/ s/\(\s\+\|[\"']>$\)/ /g s/^\s*// s/,//g s/\( *&ndash.*\)*<\/title>//" | grep "|")" 

Report Page