nsbin/old/netscape-alias-to-mutt-alias.awk
Nico Schottelius 4e21c23414 continue to cleanup
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-12-28 20:19:27 +01:00

21 lines
438 B
Awk
Executable file

# small script, which helps to make mutt alias from netscape alias
# Author: Nico Schottelius <nico@schottelius.org>
# Date: 12th of March 2002
# Last Changed: same
#
# alias name1 name2 name3 <emailaddr> to
# alias name1name2name3 name1 name2 name3 <emailaddr>
/^alias .* <.*>$/ {
save=ORS
ORS=""
line++;
print "alias "
for(j=2;j<NF;j++)
print $j
for(i=2;i<=NF;i++)
print " " $i
ORS=save
print ""
}