Find all files that end in .jpg

2002-04-04 Thread Naomi Arries
Help I'm struggling to have these two pieces of codes do what I want it to do With code (1) I'm trying to recursively decends into directories to find all the files that end in .jpg. With code (2) I'm trying to read in the extentionfrom the command line. ---code(1) - #!/u

simlpe regular expressions

2002-03-27 Thread Naomi Arries
Hi all @str = 'abaabaaab' 1)To match 3 a's in $str I found /aaa/ and /a{3}/ I need more regex. 2)to match any number of 'a's, 3'b's and at least 1'c' I found /a*b{3}c+/ regex. I need more regex Could you help? bye naomi == Brought to you by Ananzi Shopping for specials, competitions and f

Creating package containing Link lists

2002-03-27 Thread Naomi Arries
I have written a few linked list subroutines (See below) I want to move these subroutines in to a package Queue::LList 1) Queue must be a subdirectory containing file LList.pm 2) Need create and test package using the test calls(see code below) 3) Need to use the same variable names and package

Creating a Linked list package

2002-03-27 Thread Naomi Arries
Hi Please asssist. I have construct a few Linklist subroutines see attached file. I want to move these subroutines in to a package Queue::LList 1) Queue must be a subdirectory containing file LList.pm 2) Want to create package and test it using the test calls in attached file. 3) Need to