nsbin/awkscript
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

21 lines
438 B
Text
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 ""
}