Files
server/usr/share/doc/gawk/examples/network/webgrab.awk
2026-01-07 20:52:11 +01:00

7 lines
187 B
Awk

BEGIN { RS = "https?://[#%&\\+\\-\\./0-9\\:;\\?A-Z_a-z\\~]*" }
RT != "" {
command = ("gawk -v Proxy=MyProxy -f geturl.awk " RT \
" > doc" NR ".html")
print command
}