At an attempt to take your question seriously, you probably mean the remove program as used by cmd.exe on Microsoft Windows. I suspect that your experience is limited to just that one operating system and just that one shell (cmd.exe, that is). Other operating systems and environments have other names for that. unlink is the name of the UNIX kernel function to delete a file, it is called DeleteFile by the Windows kernel, but 'remove' at the Windows command line and 'rm' at the UNIX command line. I have no idea what it is called on MAC, IBM Mainframe, VMS, or mumble-mumble.

So, whatever Perl had called it, someone would have complained that it was not the same as they are used to. Update: OK, I'm wrong again, the remove function is part of the ISO C library not cmd.exe, and Mr. Google tells me it is used in other places, like DB2, but I think my point still stands.

In reply to Re: remove function by cdarke
in thread remove function by irah

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.