Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pod::perldoc::tortf(3pm) [suse man page]

Pod::Perldoc::ToRtf(3pm)				 Perl Programmers Reference Guide				  Pod::Perldoc::ToRtf(3pm)

NAME
Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF SYNOPSIS
perldoc -o rtf Some::Modulename DESCRIPTION
This is a "plug-in" class that allows Perldoc to use Pod::Simple::RTF as a formatter class. This is actually a Pod::Simple::RTF subclass, and inherits all its options. You have to have Pod::Simple::RTF installed (from the Pod::Simple dist), or this module won't work. If Perldoc is running under MSWin and uses this class as a formatter, the output will be opened with write.exe or whatever program is specified in the environment variable "RTFREADER". For example, to specify that RTF files should be opened the same as they are when you double-click them, you would do "set RTFREADER=start.exe" in your autoexec.bat. Handy tip: put "set PERLDOC=-ortf" in your autoexec.bat and that will set this class as the default formatter to run when you do "perldoc whatever". SEE ALSO
Pod::Simple::RTF, Pod::Simple, Pod::Perldoc COPYRIGHT AND DISCLAIMERS
Copyright (c) 2002 Sean M. Burke. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Current maintainer: Adriano R. Ferreira <ferreira@cpan.org> Past contributions from: Sean M. Burke <sburke@cpan.org> perl v5.12.1 2010-04-26 Pod::Perldoc::ToRtf(3pm)

Check Out this Related Man Page

Pod::Perldoc::ToRtf(3pm)				 Perl Programmers Reference Guide				  Pod::Perldoc::ToRtf(3pm)

NAME
Pod::Perldoc::ToRtf - let Perldoc render Pod as RTF SYNOPSIS
perldoc -o rtf Some::Modulename DESCRIPTION
This is a "plug-in" class that allows Perldoc to use Pod::Simple::RTF as a formatter class. This is actually a Pod::Simple::RTF subclass, and inherits all its options. You have to have Pod::Simple::RTF installed (from the Pod::Simple dist), or this module won't work. If Perldoc is running under MSWin and uses this class as a formatter, the output will be opened with write.exe or whatever program is specified in the environment variable "RTFREADER". For example, to specify that RTF files should be opened the same as they are when you double-click them, you would do "set RTFREADER=start.exe" in your autoexec.bat. Handy tip: put "set PERLDOC=-ortf" in your autoexec.bat and that will set this class as the default formatter to run when you do "perldoc whatever". SEE ALSO
Pod::Simple::RTF, Pod::Simple, Pod::Perldoc COPYRIGHT AND DISCLAIMERS
Copyright (c) 2002 Sean M. Burke. All rights reserved. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. AUTHOR
Current maintainer: Mark Allen "<mallen@cpan.org>" Past contributions from: brian d foy "<bdfoy@cpan.org>" Adriano R. Ferreira "<ferreira@cpan.org>", Sean M. Burke "<sburke@cpan.org>" perl v5.16.2 2012-10-11 Pod::Perldoc::ToRtf(3pm)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

embedded exe file into rtf file

Hi All I want a method in shell script which will embed the exe file into rtf file si that the rtf file can be open in word and so my exe. Actually what is happening in my system at present : The report in my system is a self-extracting Zip file with filetype '.EXE'. Double clicking... (1 Reply)
Discussion started by: rawatds
1 Replies

2. UNIX for Dummies Questions & Answers

A question?

using my unix os, can i do any autoexec.bat editing in order to execute selected programs that i use most often? :confused: (1 Reply)
Discussion started by: alecks1975
1 Replies

3. Windows & DOS: Issues & Discussions

Urgent Need for Assistance: Triggering Windows bat files from UNIX

Hello, Is there a way to trigger a Windows bat file or program on a different machine from a different UNIX server using KSC file? I hope you can assist me with this. Thanks! (0 Replies)
Discussion started by: punyenye
0 Replies

4. UNIX for Dummies Questions & Answers

Q about windows bat files

Hi, can you run a windows bat file or a VBscript from a shell script? #!/bin/sh PATH=/ $PATH/test.bat (1 Reply)
Discussion started by: cmac
1 Replies

5. Shell Programming and Scripting

difference between .bat and .wsh formats

what is the difference between .bat and .wsh files.. how to convert .bat to .wsh thanks ramesh (1 Reply)
Discussion started by: rameshj6
1 Replies

6. Shell Programming and Scripting

how to convert XLS to CSV and DOC/RTF to TXT

Hi, i don't know anything about PERL. Can anyone help me providing PERL scripts for 1. converting XLS to CSV (and vice-versa) 2. converting DOC/RTF to TXT Thanks much Prvn (1 Reply)
Discussion started by: prvnrk
1 Replies

7. Programming

how to get result from exe file using java

hello i have problem getting result from exe file using java i have exe file (inducer.exe) when i open in command line it i have to put two inputs function name file name i had make bat file which work OK until opening the program bat file contain inducer.exe //OK with this it open... (1 Reply)
Discussion started by: vip_a1
1 Replies

8. Shell Programming and Scripting

Script on pattern matching and print lines and export to excel

Hi Friends, I am working on a script.. Looking forward for your expert help..... My requirement is: I have a text file where, need to search equip * RTF or end of line with RTF ,once this pattern is found then print 2nd line, 6th line, 7th line to a different file. For Ex: equip 1... (34 Replies)
Discussion started by: shaliniyadav
34 Replies

9. Shell Programming and Scripting

Run cygwin in .bat file

Hello everyone, I've written quite a few AWK scripts to run in cygwin and now, I would like to run them one after the other in a .bat file. The problem is, I tried modifying the .bat file used to run cygwin in the first place, but whenever I change something, it doesn't work. The PATH is set up... (3 Replies)
Discussion started by: Teroc
3 Replies

10. Windows & DOS: Issues & Discussions

Executing .bat file

Hi , I have a bat file on windows machine ,I need to excute it from my local unix machine using sambe utility.Is there any comman to execute the .bat file remotely. Using samba utility i can post files to and fro from windows to unix but i don't comman to exute the .bat file. can any one... (2 Replies)
Discussion started by: Raamc
2 Replies

11. Shell Programming and Scripting

display unique words.

I am having a file with duplicate words how can I eliminate them ant,bat bat,cat cat a.txt | grep -bat | awk '{print $1}' expecting o/p as ant,bat,cat How can I display the output as ant,bat,cat in a single line and no duplicates exists. (2 Replies)
Discussion started by: shikshavarma
2 Replies

12. What is on Your Mind?

Open a server using Batch file

Hi , Thanks in advance I need to open a server by using .bat file by writing the command in .bat file please help me (0 Replies)
Discussion started by: vis
0 Replies

13. Windows & DOS: Issues & Discussions

how to install custom .bat files in perl

I'm using damke to install perl modules on windows. I have my custom .bat files for the perl script. How to overwrite the .bat files that gets generated by pl2bat with my custom .bat files! Thanks, Hansini (1 Reply)
Discussion started by: hansini
1 Replies

14. UNIX for Advanced & Expert Users

Please help Linux system is down...

System is down, I can't seem to get in. It's VM so I took screen shot and upload the file here. Its a RTF file format. when system comes up, I did press e then in the middle as you can see, I typed init=/bin/bash, I pressed CTRL -X. Then I should get prompt but not getting that. I get... (4 Replies)
Discussion started by: samnyc
4 Replies

15. Programming

RTFEditorKit - Write to RTF File

Hi, I am looking at writing the BLOB from database which is an rtf data to write to RTF file. I am trying to use the RTFEditorKit for the same and was struck with the write API it provides. write API takes the outstream and Document, all I have is Inputstream or bytestream from database -... (5 Replies)
Discussion started by: vijaykrc
5 Replies