Don't bother trying to make this an RFC.

If you want to know how to do something in UNIX, you need to know exactly one command before you start: "man".

This lets you look up how things work in the UNIX manual pages. If you look up the "man" commmand, you'll see that if you use the -k option, you can do a keyword search on any topic you want.

Let's find out what commands might be involved in clearing the screen, shall we?

%man -k clear | grep screen clear(1) - clear terminal screen

Right: there's exactly one command, called "clear", which clears the screen.

See? If people read the UNIX FAQ, they won't need to read your little FAQ. If they're not the type to read a FAQ, writing one won't help.

If they do read the UNIX FAQ, they'll also know how to look up the man page for perl. The man page for perl points out that there is a man page for the Perl FAQ.

The Perl FAQ explictly lists the answer to the question: "How do I clear the screen".

We don't need another FAQ: we need people to read the FAQs that already exist.


In reply to Re: RFC: Draft Q & A: How to clear the screen in a perl program by Anonymous Monk
in thread RFC: Draft Q & A: How to clear the screen in a perl program by NovMonk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.