home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _6737c992f705e1e44936d1a92b040eaf < prev    next >
Encoding:
Text File  |  2000-03-23  |  4.0 KB  |  125 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#bugs">BUGS</A></LI>
  26.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  27.     <LI><A HREF="#author">AUTHOR</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <PRE>
  46.   perl -MExtUtils::Command -e cat files... > destination
  47.   perl -MExtUtils::Command -e mv source... destination
  48.   perl -MExtUtils::Command -e cp source... destination
  49.   perl -MExtUtils::Command -e touch files...
  50.   perl -MExtUtils::Command -e rm_f file...
  51.   perl -MExtUtils::Command -e rm_rf directories...
  52.   perl -MExtUtils::Command -e mkpath directories...
  53.   perl -MExtUtils::Command -e eqtime source destination
  54.   perl -MExtUtils::Command -e chmod mode files...
  55.   perl -MExtUtils::Command -e test_f file</PRE>
  56. <P>
  57. <HR>
  58. <H1><A NAME="description">DESCRIPTION</A></H1>
  59. <P>The module is used in the Win32 port to replace common UNIX commands.
  60. Most commands are wrappers on generic modules File::Path and File::Basename.</P>
  61. <DL>
  62. <DT><STRONG><A NAME="item_cat">cat</A></STRONG><BR>
  63. <DD>
  64. Concatenates all files mentioned on command line to STDOUT.
  65. <P></P>
  66. <DT><STRONG><A NAME="item_eqtime_src_dst">eqtime src dst</A></STRONG><BR>
  67. <DD>
  68. Sets modified time of dst to that of src
  69. <P></P>
  70. <DT><STRONG><A NAME="item_rm_f_files%2E%2E%2E%2E">rm_f files....</A></STRONG><BR>
  71. <DD>
  72. Removes directories - recursively (even if readonly)
  73. <P></P>
  74. <DT><STRONG>rm_f files....</STRONG><BR>
  75. <DD>
  76. Removes files (even if readonly)
  77. <P></P>
  78. <DT><STRONG><A NAME="item_touch_files_%2E%2E%2E">touch files ...</A></STRONG><BR>
  79. <DD>
  80. Makes files exist, with current timestamp
  81. <P></P>
  82. <DT><STRONG><A NAME="item_mv_source%2E%2E%2E_destination">mv source... destination</A></STRONG><BR>
  83. <DD>
  84. Moves source to destination.
  85. Multiple sources are allowed if destination is an existing directory.
  86. <P></P>
  87. <DT><STRONG><A NAME="item_cp_source%2E%2E%2E_destination">cp source... destination</A></STRONG><BR>
  88. <DD>
  89. Copies source to destination.
  90. Multiple sources are allowed if destination is an existing directory.
  91. <P></P>
  92. <DT><STRONG><A NAME="item_chmod_mode_files%2E%2E%2E">chmod mode files...</A></STRONG><BR>
  93. <DD>
  94. Sets UNIX like permissions 'mode' on all the files.
  95. <P></P>
  96. <DT><STRONG><A NAME="item_mkpath_directory%2E%2E%2E">mkpath directory...</A></STRONG><BR>
  97. <DD>
  98. Creates directory, including any parent directories.
  99. <P></P>
  100. <DT><STRONG><A NAME="item_test_f_file">test_f file</A></STRONG><BR>
  101. <DD>
  102. Tests if a file exists
  103. <P></P></DL>
  104. <P>
  105. <HR>
  106. <H1><A NAME="bugs">BUGS</A></H1>
  107. <P>Should probably be Auto/Self loaded.</P>
  108. <P>
  109. <HR>
  110. <H1><A NAME="see also">SEE ALSO</A></H1>
  111. <P>ExtUtils::MakeMaker, ExtUtils::MM_Unix, ExtUtils::MM_Win32</P>
  112. <P>
  113. <HR>
  114. <H1><A NAME="author">AUTHOR</A></H1>
  115. <P>Nick Ing-Simmons <<EM><A HREF="mailto:nick@ni-s.u-net.com">nick@ni-s.u-net.com</A></EM>>.</P>
  116. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  117. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  118. <STRONG><P CLASS=block> ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc.</P></STRONG>
  119. </TD></TR>
  120. </TABLE>
  121.  
  122. </BODY>
  123.  
  124. </HTML>
  125.