8.67. ExtUtils::CommandProvided with the standard Win32 port to replace common Unix commands in MakeFiles. Includes subroutines for the following commands.
cat file... [> destination] Concatenates all specified files into destination file or to STDOUT.
chmod mode files... Sets Unix-like permissions on all files specified. mode gives the permissions to set.
cp source... destination Copies a single source file source to destination. Multiple source files can be specified if destination is an existing directory.
eqtime source destination Sets the "modified time" of destination to that of source.
mkpath directory... Creates directory, including any parent directories.
mv source... destination Moves sourcefile source to destination. Multiple sourcefiles are allowed if destination is an existing directory.
rm_f files.... Removes files, even if they are read-only.
rm_rf directories.... Removes directories recursively, even if they are read-only.
test_f file Tests for the existence of file.
touch file.... Makes sure file exists and sets the current timestamp. Copyright © 2002 O'Reilly & Associates. All rights reserved. |
|