diff options
| author | robbie-hatley <Robbie.Hatley@gmail.com> | 2023-02-10 13:31:12 -0800 |
|---|---|---|
| committer | robbie-hatley <Robbie.Hatley@gmail.com> | 2023-02-10 13:31:12 -0800 |
| commit | 3c980a72ac09c5fec9ab511193b0989a13ff06aa (patch) | |
| tree | dce679c12a4520e2dfb1203b8da3bfc2e86da021 | |
| parent | e89fbb820caba33d817afe024cfe1e26751112a4 (diff) | |
| download | perlweeklychallenge-club-3c980a72ac09c5fec9ab511193b0989a13ff06aa.tar.gz perlweeklychallenge-club-3c980a72ac09c5fec9ab511193b0989a13ff06aa.tar.bz2 perlweeklychallenge-club-3c980a72ac09c5fec9ab511193b0989a13ff06aa.zip | |
Added blog and tweaked Perl files.
| -rw-r--r-- | challenge-203/robbie-hatley/blog.txt | 1 | ||||
| -rwxr-xr-x | challenge-203/robbie-hatley/perl/ch-2.pl | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/challenge-203/robbie-hatley/blog.txt b/challenge-203/robbie-hatley/blog.txt index e69de29bb2..d7940e419f 100644 --- a/challenge-203/robbie-hatley/blog.txt +++ b/challenge-203/robbie-hatley/blog.txt @@ -0,0 +1 @@ +https://hatley-software.blogspot.com/2023/02/robbie-hatleys-perl-solutions-to-weekly.html diff --git a/challenge-203/robbie-hatley/perl/ch-2.pl b/challenge-203/robbie-hatley/perl/ch-2.pl index bf2f93358d..fda3904679 100755 --- a/challenge-203/robbie-hatley/perl/ch-2.pl +++ b/challenge-203/robbie-hatley/perl/ch-2.pl @@ -28,8 +28,8 @@ Task 2: Copy Directory Submitted by: Julien Fiegehenn -You are given path to two folders, $source and $target. Write a script that recursively copy the directory from $source -to $target except any files. +Given paths to two folders, $source and $target, write a script that recursively copies the directory structure from $source +to $target, without copying any files. Example: |
