Plan 9 from Bell Labs’s /usr/web/sources/patch/applied/ap2/ap.orig

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/rc
#
#	get AP news headline list or the given story
#

tmp=/tmp/tmp.$pid
wire='http://www.newsday.com/news/nationworld/wire'
if ( ~ $#* 0 )
	hget $wire | tee /tmp/ap.tmp |
		htmlfmt -a -w 100 |
		sed -n '
			1,/On Wall Street/d
			/AP News Wire/,$d
			/^• / {
				N
				s/^• / /g
				s/\n/ /g
				s/\[\/news\/nationworld\/wire\//|/
				s/,[0-9]+,[0-9]+\.story.*$//
				p
		}' |
		awk -F '|' '
			{
			s = "";
			for (i = 1; i < NF; i++)
				s = s " " $i;
			printf("%-40s %s\n", $NF, s);
		}'

if not
	hget $wire/^$1^.story |
		htmlfmt |
		sed '
			1,/^By Associated Press$/d
			s/\| Article licensing.*$//
			/^Copyright ©/p
			/^Copyright ©/,$d
			'

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.