Sweeeeet!<br><br><div><span class="gmail_quote">On 3/20/07, <b class="gmail_sendername">Juan Zuluaga</b> &lt;<a href="mailto:jz31416@yahoo.com">jz31416@yahoo.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Oh no, Perl is overkill. use gawk instead.<br><br>$ cat ticketing.awk<br>BEGIN { FS=&quot;\t&quot;}<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{print &quot;===Create-Ticket: ticket&quot; $NR &quot;\n&quot;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;Queue:\t&quot; $1 &quot;\n&quot;;
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;Subject:\t&quot; $2 &quot;\n&quot;;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print &quot;\n&quot; }<br><br>$ gawk -f ticketing.awk yourfile.tsv<br><br><br>There are fancy ways to use printf for teh formatting.<br><br><br><br><br>
<br><a href="http://socioenlinea.blog.lemonde.fr/socioenlinea/">http://socioenlinea.blog.lemonde.fr/socioenlinea/</a><br>Comentarios sobre politica, sociedad y ciencia social.<br><br><br><br>____________________________________________________________________________________
<br>Don&#39;t pick lemons.<br>See all the new 2007 cars at Yahoo! Autos.<br><a href="http://autos.yahoo.com/new_cars.html">http://autos.yahoo.com/new_cars.html</a><br>_______________________________________________<br>wplug mailing list
<br><a href="mailto:wplug@wplug.org">wplug@wplug.org</a><br><a href="http://www.wplug.org/mailman/listinfo/wplug">http://www.wplug.org/mailman/listinfo/wplug</a><br></blockquote></div><br>