repo.or.cz
/
lcapit-junk-code.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Introduce old redir program
[lcapit-junk-code.git]
/
books
/
sedawk
/
blocklist.awk
blob
07bff433c991e2b69a3c28b5f18e1716cd9ca983
1
# blocklist.awk -- print name and address in block form.
2
# input file -- name, company, street, city, state and zip, phone
3
{
4
print
""
# output blank line
5
print
$
1
# name
6
print
$
2
# company
7
print
$
3
# street
8
print
$
4
,
$
5
# city, state zip
9
}