Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=3474688
By: nobody

from http://www.spinellis.gr/sw/umlgraph/doc/faq.html#winpic

Under Windows the output of pic2plot appears empty. Why?
On Windows platforms note that the current version of pic2plot appears to be
very picky about carriage return (CR - \r) characters (by default, CR is part
of the platform's end of line sequence) appearing in its input file. Therefore,
you will probably want to instruct your editor to create Unix-style files, or
filter the files to remove the carriage return characters. The following Perl
invocation is such a filter:

perl -p -e "BEGIN {binmode(STDOUT);} s/\r//"

You can remove the CR characters in-place by running:

perl -pi.bak -e "BEGIN {binmode(STDOUT);} s/\r//" FILENAME.pic

In addition, pic2plot appears to require that the last input file be properly
terminated (with a newline). Apparently, some Windows editors may leave the
last line unterminated, so if your editor is in this category it may be safer
to add a blank line in the end.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=74807


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
GnuWin32-Users mailing list
GnuWin32-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnuwin32-users

Reply via email to